mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-03 20:21:40 +00:00
feat: implement identity provider settings
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user