feat: implement identity provider settings

This commit is contained in:
Steven
2024-08-11 23:30:58 +08:00
parent 61dd989df4
commit 768af5b096
16 changed files with 791 additions and 181 deletions

View File

@ -6,13 +6,14 @@ option go_package = "gen/store";
message IdentityProvider {
string name = 1;
string title = 2;
enum Type {
TYPE_UNSPECIFIED = 0;
OAUTH2 = 1;
}
Type type = 2;
IdentityProviderConfig config = 3;
Type type = 3;
IdentityProviderConfig config = 4;
}
message IdentityProviderConfig {