mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
a4763b1e4c
* features * features * features * fix json tags * add features handler to auth * mocks for tests * add setup step * fixes * add featurelist to auth api * grandfather state and typos * typo * merge new-eventstore * fix login policy tests * label policy in features * audit log retention
18 lines
378 B
Protocol Buffer
18 lines
378 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package caos.zitadel.utils.v1;
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
option go_package = "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption";
|
|
|
|
|
|
extend google.protobuf.MethodOptions {
|
|
AuthOption auth_option = 50000;
|
|
}
|
|
|
|
message AuthOption {
|
|
string permission = 1;
|
|
string check_field_name = 2;
|
|
string feature = 3;
|
|
} |