Adds UI to enrole members

This commit is contained in:
Paul Schneider 2015-11-04 16:20:21 +01:00
commit 0b8b717f3e
12 changed files with 58 additions and 11 deletions

View file

@ -76,7 +76,7 @@ namespace Yavsc.Helpers.Google
{
string scope = string.Join ("%20", scopeOpenid);
string prms = String.Format ("response_type=code&client_id={0}&redirect_uri={1}&scope={2}&state={3}&include_granted_scopes=false",
string prms = String.Format ("response_type=code&client_id={0}&redirect_uri={1}&scope={2}&state={3}&include_granted_scopes=false&approval_prompt=force",
CLIENT_ID, RedirectUri, scope, state);
GetAuthResponse (bresp, prms);
}