better ordering

This commit is contained in:
Devin Howard 2016-10-12 11:17:04 +08:00
parent 73ce78b40e
commit b96afa3f33
3 changed files with 4 additions and 4 deletions

View file

@ -12,10 +12,10 @@ documentation:
content: ""
securitySchemes:
token: !include securitySchemes/token.raml
cookie: !include securitySchemes/cookie.raml
token: !include securitySchemes/token.raml
oauth_2_0: !include securitySchemes/oauth_2_0.raml
securedBy: [ token, cookie, oauth_2_0 ]
securedBy: [ cookie, token, oauth_2_0 ]
traits:
pageable: !include traits/pageable.raml

View file

@ -1,5 +1,5 @@
#type: collection
securedBy: [ null, token, cookie, oauth_2_0 ]
securedBy: [ null, cookie, token, oauth_2_0 ]
get:
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
responses:

View file

@ -1,5 +1,5 @@
#type: collection
securedBy: [ null, token, cookie, oauth_2_0 ]
securedBy: [ null, cookie, token, oauth_2_0 ]
get:
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
responses: