mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 08:43:40 +00:00
10 lines
218 B
Protocol Buffer
10 lines
218 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package zitadel.feature.v1;
|
||
|
|
||
|
option go_package ="github.com/zitadel/zitadel/pkg/grpc/feature";
|
||
|
|
||
|
enum InstanceFeature {
|
||
|
INSTANCE_FEATURE_UNSPECIFIED = 0;
|
||
|
INSTANCE_FEATURE_LOGIN_DEFAULT_ORG = 1;
|
||
|
}
|