memos/proto/store/idp.proto

41 lines
695 B
Protocol Buffer
Raw Permalink Normal View History

2024-03-30 09:58:47 +03:00
syntax = "proto3";
package memos.store;
option go_package = "gen/store";
2024-04-13 05:50:25 +03:00
message IdentityProvider {
int32 id = 1;
string name = 2;
enum Type {
TYPE_UNSPECIFIED = 0;
OAUTH2 = 1;
}
Type type = 3;
string identifier_filter = 4;
IdentityProviderConfig config = 5;
}
2024-03-30 09:58:47 +03:00
message IdentityProviderConfig {
2024-04-12 21:55:40 +03:00
oneof config {
2024-04-13 05:50:25 +03:00
OAuth2Config oauth2_config = 1;
2024-03-30 09:58:47 +03:00
}
2024-04-12 21:55:40 +03:00
}
2024-03-30 09:58:47 +03:00
2024-04-12 21:55:40 +03:00
message FieldMapping {
string identifier = 1;
string display_name = 2;
string email = 3;
}
2024-03-30 09:58:47 +03:00
2024-04-12 21:55:40 +03:00
message OAuth2Config {
string client_id = 1;
string client_secret = 2;
string auth_url = 3;
string token_url = 4;
string user_info_url = 5;
repeated string scopes = 6;
FieldMapping field_mapping = 7;
2024-03-30 09:58:47 +03:00
}