zitadel/internal/protoc/protoc-gen-authoption/authoption/options.proto
Livio Amstutz a4763b1e4c
feat: features (#1427)
* 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
2021-03-25 17:26:21 +01:00

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;
}