From 76b25e13c1400c44d09b35aa332f7a738cb7bca3 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Sat, 22 Nov 2014 22:43:29 -0500 Subject: [PATCH] made offline access non-default --- openid-connect-server-webapp/src/main/resources/db/scopes.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid-connect-server-webapp/src/main/resources/db/scopes.sql b/openid-connect-server-webapp/src/main/resources/db/scopes.sql index a7b6f5b1c..8b03afe2b 100644 --- a/openid-connect-server-webapp/src/main/resources/db/scopes.sql +++ b/openid-connect-server-webapp/src/main/resources/db/scopes.sql @@ -16,7 +16,7 @@ INSERT INTO system_scope_TEMP (scope, description, icon, allow_dyn_reg, default_ ('email', 'email address', 'envelope', true, true, false, null), ('address', 'physical address', 'home', true, true, false, null), ('phone', 'telephone number', 'bell', true, true, false, null), - ('offline_access', 'offline access', 'time', true, true, false, null); + ('offline_access', 'offline access', 'time', true, false, false, null); -- -- Merge the temporary scopes safely into the database. This is a two-step process to keep scopes from being created on every startup with a persistent store.