add new property of Application model for oauth2.0 grant type

* 'grantType': 'string'

 Value of 'grantType' has to be one of the followings.
 - authorization_code, implicit, password, client_credentials
This commit is contained in:
Vine Brancho 2015-01-17 22:59:23 +09:00
parent 8fa04fd32f
commit 67bb3679dd
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,10 @@
"email": "string", "email": "string",
"emailVerified": "boolean", "emailVerified": "boolean",
"grantType": {
"type": "string",
"description": "Grant type permitted to the application for OAuth 2.0"
},
"url": { "url": {
"type": "string", "type": "string",
"description": "The application URL for OAuth 2.0" "description": "The application URL for OAuth 2.0"