mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 06:03:40 +00:00
1c354ca977
* pipeline runs on ubuntu instead of docker * added Makefile to build zitadel core (backend) and console (frontend) * pipeline runs in parallel where possible * pipeline is split into multiple jobs * removed goreleaser * added command to check if zitadel instance is running
17 lines
346 B
Protocol Buffer
17 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package zitadel.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;
|
|
}
|