Skip to content

Commit

Permalink
Fix errors in database file
Browse files Browse the repository at this point in the history
  • Loading branch information
rmiccoli committed Feb 16, 2022
1 parent f2fa805 commit f559b51
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@ INSERT INTO client_details (id, client_id, client_secret, client_name, dynamical
(9, 'token-exchange-subject', 'secret', 'Token Exchange grant client subject', false, null, 3600, 600, true, 'SECRET_POST',false, CURRENT_TIMESTAMP()),
(10, 'registration-client', 'secret', 'Registration service test client', false, null, 3600, 600, true, 'SECRET_POST',false, CURRENT_TIMESTAMP()),
(11, 'token-lookup-client', 'secret', 'Token lookup client', false, null, 3600, 600, true, 'SECRET_BASIC', false, CURRENT_TIMESTAMP());
(1, 'client', 'secret', 'Test Client', false, null, 3600, 600, true, 'SECRET_BASIC',false,CURRENT_TIMESTAMP()),
(2, 'tasks-app', 'secret', 'Tasks App', false, null, 0, 0, true, 'SECRET_BASIC',false,CURRENT_TIMESTAMP()),
(3, 'post-client', 'secret', 'Post client', false, null, 3600,600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(4, 'client-cred', 'secret', 'Client credentials', false, null, 3600, 600, true, 'SECRET_BASIC',false,CURRENT_TIMESTAMP()),
(5, 'password-grant', 'secret', 'Password grant client', false, null, 3600, 600, true, 'SECRET_BASIC',true,CURRENT_TIMESTAMP()),
(6, 'scim-client-ro', 'secret', 'SCIM client (read-only)', false, null, 3600, 600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(7, 'scim-client-rw', 'secret', 'SCIM client (read-write)', false, null, 3600, 600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(8, 'token-exchange-actor', 'secret', 'Token Exchange grant client actor', false, null, 3600, 600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(9, 'token-exchange-subject', 'secret', 'Token Exchange grant client subject', false, null, 3600, 600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(10, 'registration-client', 'secret', 'Registration service test client', false, null, 3600, 600, true, 'SECRET_POST',false,CURRENT_TIMESTAMP()),
(11, 'token-lookup-client', 'secret', 'Token lookup client', false, null, 3600, 600, true, 'SECRET_BASIC', false,CURRENT_TIMESTAMP());

INSERT INTO client_details (id, client_id, client_secret, client_name, dynamically_registered,
refresh_token_validity_seconds, access_token_validity_seconds, id_token_validity_seconds, allow_introspection,
Expand Down

0 comments on commit f559b51

Please sign in to comment.