source: TFP-WebServer/WebServer/src/ERequestMethod.cs@ 467

Last change on this file since 467 was 426, checked in by alloc, 19 months ago

*Updated web permissions system
*Fixed webpermissions command
*Moved API "webmods" to "mods", also lists non-webmod mods

File size: 221 bytes
Line 
1namespace Webserver {
2 public enum ERequestMethod {
3 Other,
4 // ReSharper disable InconsistentNaming
5 GET,
6 POST,
7 PUT,
8 DELETE,
9 HEAD,
10 OPTIONS,
11 // ReSharper restore InconsistentNaming
12 Count
13 }
14}
Note: See TracBrowser for help on using the repository browser.