diff options
author | Jonas Franz <info@jonasfranz.software> | 2019-03-08 17:42:50 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-03-08 11:42:50 -0500 |
commit | e777c6bdc6f12f9152335f8bfd66b956aedc9957 (patch) | |
tree | b79c9bc2d4f9402dcd15d993b088840e2fad8a54 /models/fixtures | |
parent | 9d3732dfd512273992855097bba1e909f098db23 (diff) | |
download | gitea-e777c6bdc6f12f9152335f8bfd66b956aedc9957.tar.gz gitea-e777c6bdc6f12f9152335f8bfd66b956aedc9957.zip |
Integrate OAuth2 Provider (#5378)
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/oauth2_application.yml | 9 | ||||
-rw-r--r-- | models/fixtures/oauth2_authorization_code.yml | 8 | ||||
-rw-r--r-- | models/fixtures/oauth2_grant.yml | 6 |
3 files changed, 23 insertions, 0 deletions
diff --git a/models/fixtures/oauth2_application.yml b/models/fixtures/oauth2_application.yml new file mode 100644 index 0000000000..a13e20b10e --- /dev/null +++ b/models/fixtures/oauth2_application.yml @@ -0,0 +1,9 @@ +- + id: 1 + uid: 1 + name: "Test" + client_id: "da7da3ba-9a13-4167-856f-3899de0b0138" + client_secret: "$2a$10$UYRgUSgekzBp6hYe8pAdc.cgB4Gn06QRKsORUnIYTYQADs.YR/uvi" # bcrypt of "4MK8Na6R55smdCY0WuCCumZ6hjRPnGY5saWVRHHjJiA= + redirect_uris: '["a"]' + created_unix: 1546869730 + updated_unix: 1546869730 diff --git a/models/fixtures/oauth2_authorization_code.yml b/models/fixtures/oauth2_authorization_code.yml new file mode 100644 index 0000000000..2abce16354 --- /dev/null +++ b/models/fixtures/oauth2_authorization_code.yml @@ -0,0 +1,8 @@ +- id: 1 + grant_id: 1 + code: "authcode" + code_challenge: "CjvyTLSdR47G5zYenDA-eDWW4lRrO8yvjcWwbD_deOg" # Code Verifier: N1Zo9-8Rfwhkt68r1r29ty8YwIraXR8eh_1Qwxg7yQXsonBt + code_challenge_method: "S256" + redirect_uri: "a" + valid_until: 3546869730 + diff --git a/models/fixtures/oauth2_grant.yml b/models/fixtures/oauth2_grant.yml new file mode 100644 index 0000000000..113eec7e5c --- /dev/null +++ b/models/fixtures/oauth2_grant.yml @@ -0,0 +1,6 @@ +- id: 1 + user_id: 1 + application_id: 1 + counter: 1 + created_unix: 1546869730 + updated_unix: 1546869730 |