Skip to content

Commit 5728f5a

Browse files
committed
Added redirect_uri to OAuth credentials
1 parent a757246 commit 5728f5a

File tree

3 files changed

+58
-45
lines changed

3 files changed

+58
-45
lines changed

pkg/pb/credentialspb/credentials.pb.go

Lines changed: 54 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/pb/credentialspb/credentials.pb.validate.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/credentials.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ message Oauth2 {
4040
string client_id = 2;
4141
string client_secret = 3;
4242
string access_token = 4;
43+
string redirect_uri = 5;
4344
}
4445

4546
message KeySecret {
@@ -49,7 +50,7 @@ message KeySecret {
4950

5051
message AWSSessionTokenSecret {
5152
string key = 1 [(validate.rules).string.min_len = 1];
52-
string secret = 2 [(validate.rules).string.min_len = 1];
53+
string secret = 2 [(validate.rules).string.min_len = 1];
5354
string session_token = 3 [(validate.rules).string.min_len = 1];
5455
}
5556

0 commit comments

Comments
 (0)