|
| 1 | +use ulbora_oauth2_server; |
| 2 | +insert into client(email, enabled, name, secret, web_site) |
| 3 | +values( '[email protected]', 1, 'Ulbora Labs', '554444vfg55ggfff22454sw2fff2dsfd', 'www.ulboralabs.com'); |
| 4 | + |
| 5 | + |
| 6 | +insert into client_allowed_uri(client_id, uri) |
| 7 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClient'); |
| 8 | + |
| 9 | +insert into client_allowed_uri(client_id, uri) |
| 10 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/updateClient'); |
| 11 | + |
| 12 | +insert into client_allowed_uri(client_id, uri) |
| 13 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClient'); |
| 14 | + |
| 15 | +insert into client_allowed_uri(client_id, uri) |
| 16 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientList'); |
| 17 | + |
| 18 | +insert into client_allowed_uri(client_id, uri) |
| 19 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClient'); |
| 20 | + |
| 21 | +insert into client_allowed_uri(client_id, uri) |
| 22 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientAllowedUri'); |
| 23 | + |
| 24 | +insert into client_allowed_uri(client_id, uri) |
| 25 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientAllowedUriList'); |
| 26 | + |
| 27 | +insert into client_allowed_uri(client_id, uri) |
| 28 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientAllowedUri'); |
| 29 | + |
| 30 | +insert into client_allowed_uri(client_id, uri) |
| 31 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientRedirectUri'); |
| 32 | + |
| 33 | +insert into client_allowed_uri(client_id, uri) |
| 34 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientRedirectUriList'); |
| 35 | + |
| 36 | +insert into client_allowed_uri(client_id, uri) |
| 37 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientRedirectUri'); |
| 38 | + |
| 39 | +insert into client_allowed_uri(client_id, uri) |
| 40 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteAllClientRedirectUri'); |
| 41 | + |
| 42 | +insert into client_allowed_uri(client_id, uri) |
| 43 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientRole'); |
| 44 | + |
| 45 | +insert into client_allowed_uri(client_id, uri) |
| 46 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientRoleList'); |
| 47 | + |
| 48 | +insert into client_allowed_uri(client_id, uri) |
| 49 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientRole'); |
| 50 | + |
| 51 | +insert into client_allowed_uri(client_id, uri) |
| 52 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientScope'); |
| 53 | + |
| 54 | +insert into client_allowed_uri(client_id, uri) |
| 55 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientScopeList'); |
| 56 | + |
| 57 | +insert into client_allowed_uri(client_id, uri) |
| 58 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientScope'); |
| 59 | + |
| 60 | +insert into client_allowed_uri(client_id, uri) |
| 61 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientRoleUri'); |
| 62 | + |
| 63 | +insert into client_allowed_uri(client_id, uri) |
| 64 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientRoleAllowedUriList'); |
| 65 | + |
| 66 | +insert into client_allowed_uri(client_id, uri) |
| 67 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientRoleUri'); |
| 68 | + |
| 69 | +insert into client_allowed_uri(client_id, uri) |
| 70 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/addClientGrantType'); |
| 71 | + |
| 72 | +insert into client_allowed_uri(client_id, uri) |
| 73 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/getClientGrantTypeList'); |
| 74 | + |
| 75 | +insert into client_allowed_uri(client_id, uri) |
| 76 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientGrantType'); |
| 77 | + |
| 78 | +insert into client_allowed_uri(client_id, uri) |
| 79 | +values((select client_id from client where name = 'Ulbora Labs'), 'http:localhost:3000/rs/deleteClientGrantType'); |
| 80 | + |
| 81 | + |
0 commit comments