zitadel/internal/protoc/protoc-gen-authoption
Silvan d947bb1247
feat(changes): add editor (#273)
* fix(changes): add editor to change mapper

* fix(eventstore): only add latest sequence if greater 0 to query

* sort order in request for changes

* fix(changes): map editor for org, app and project
2020-06-25 11:25:38 +02:00
..
authoption feat: add protoc pkg 2020-03-23 11:53:12 +01:00
templates fix: start server and gateway 2020-03-25 10:54:45 +01:00
generate.go feat: add protoc pkg 2020-03-23 11:53:12 +01:00
main.go feat: add protoc pkg 2020-03-23 11:53:12 +01:00
README.md feat: add protoc pkg 2020-03-23 11:53:12 +01:00
templates.go feat(changes): add editor (#273) 2020-06-25 11:25:38 +02:00

protoc-gen-authoption

Proto options to annotate auth methods in protos

Generate protos/templates

protos: go generate authoption/generate.go
templates/install: go generate generate.go

Usage

// proto file
import "authoption/options.proto";

service MyService {

    rpc Hello(Hello) returns (google.protobuf.Empty) {
        option (google.api.http) = {
        get: "/hello"
        };

        option (caos.zitadel.utils.v1.auth_option) = {
            zitadel_permission: "hello.read"
            zitadel_check_param: "id"
        };
    }

    message Hello {
        string id = 1;
    }
}

Caos Auth Option is used for granting groups On each zitadel role is specified which auth methods are allowed to call

Get protoc-get-authoption: go get github.com/caos/zitadel/internal/protoc/protoc-gen-authoption

Protc-Flag: --authoption_out=.