mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
18 lines
381 B
Protocol Buffer
18 lines
381 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package caos.zitadel.utils.v1;
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
option go_package = "github.com/zitadel/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;
|
|
} |