mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 20:03:40 +00:00
827ce8809d
* fix: use enum for instance feature in system api * add feature.proto to lint ignore
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;
|
|
} |