From 67bb3679dda4339e1717e51e301ababd7b794053 Mon Sep 17 00:00:00 2001 From: Vine Brancho Date: Sat, 17 Jan 2015 22:59:23 +0900 Subject: [PATCH] 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 --- common/models/application.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/models/application.json b/common/models/application.json index 46213534..f34e7315 100644 --- a/common/models/application.json +++ b/common/models/application.json @@ -30,6 +30,10 @@ "email": "string", "emailVerified": "boolean", + "grantType": { + "type": "string", + "description": "Grant type permitted to the application for OAuth 2.0" + }, "url": { "type": "string", "description": "The application URL for OAuth 2.0"