renamed "scopes" in introspection response to "permission_scopes"

multiparty
Justin Richer 2015-12-21 17:42:16 -05:00
parent 9086a06d7d
commit 3734e76578
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class DefaultIntrospectionResultAssembler implements IntrospectionResultA
Map<String, Object> o = newLinkedHashMap();
o.put("resource_set_id", perm.getResourceSet().getId().toString());
Set<String> scopes = Sets.newHashSet(perm.getScopes());
o.put("scopes", scopes);
o.put("permission_scopes", scopes);
permissions.add(o);
}