mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
Add poll system for Patrons Circle
This commit is contained in:
parent
3555d53615
commit
2ef5ce6551
44 changed files with 717 additions and 98 deletions
|
@ -59,6 +59,13 @@ const HTTP_VAR_BOOL = 2;
|
|||
const HTTP_VAR_DEC = 3;
|
||||
const HTTP_VAR_ARRAY = 4;
|
||||
|
||||
const HTTP_GET = 0;
|
||||
const HTTP_POST = 1;
|
||||
const HTTP_PATCH = 2;
|
||||
const HTTP_PUT = 3;
|
||||
const HTTP_DELETE = 4;
|
||||
const HTTP_HEAD = 5;
|
||||
|
||||
const VIEW_GRID = 'grid';
|
||||
const VIEW_LIST = 'list';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue