better ordering
This commit is contained in:
parent
73ce78b40e
commit
b96afa3f33
3 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue