mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
20 lines
478 B
JavaScript
20 lines
478 B
JavaScript
/**
|
|
* Http request method.
|
|
*
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0 * @since 1.0.0
|
|
*/
|
|
(function (jsOMS, undefined)
|
|
{
|
|
jsOMS.EnumRequestMethod = Object.freeze({
|
|
POST: 'POST',
|
|
GET: 'GET',
|
|
PUT: 'PUT',
|
|
DELETE: 'DELETE',
|
|
HEAD: 'HEAD'
|
|
});
|
|
}(window.jsOMS = window.jsOMS || {}));
|