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: ""
|
content: ""
|
||||||
|
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
token: !include securitySchemes/token.raml
|
|
||||||
cookie: !include securitySchemes/cookie.raml
|
cookie: !include securitySchemes/cookie.raml
|
||||||
|
token: !include securitySchemes/token.raml
|
||||||
oauth_2_0: !include securitySchemes/oauth_2_0.raml
|
oauth_2_0: !include securitySchemes/oauth_2_0.raml
|
||||||
securedBy: [ token, cookie, oauth_2_0 ]
|
securedBy: [ cookie, token, oauth_2_0 ]
|
||||||
|
|
||||||
traits:
|
traits:
|
||||||
pageable: !include traits/pageable.raml
|
pageable: !include traits/pageable.raml
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#type: collection
|
#type: collection
|
||||||
securedBy: [ null, token, cookie, oauth_2_0 ]
|
securedBy: [ null, cookie, token, oauth_2_0 ]
|
||||||
get:
|
get:
|
||||||
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
|
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
|
||||||
responses:
|
responses:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#type: collection
|
#type: collection
|
||||||
securedBy: [ null, token, cookie, oauth_2_0 ]
|
securedBy: [ null, cookie, token, oauth_2_0 ]
|
||||||
get:
|
get:
|
||||||
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
|
is: [ searchable: { searchFields: "name" }, orderable, pageable ]
|
||||||
responses:
|
responses:
|
||||||
|
|
Loading…
Add table
Reference in a new issue