mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +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
420 B
Cheetah
17 lines
420 B
Cheetah
// Code generated by protoc-gen-auth. DO NOT EDIT.
|
|
|
|
package {{.GoPackageName}}
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
)
|
|
|
|
var {{.ServiceName}}_AuthMethods = authz.MethodMapping {
|
|
{{ range $m := .AuthOptions}}
|
|
{{$.ServiceName}}_{{$m.Name}}_FullMethodName: authz.Option{
|
|
Permission: "{{$m.Permission}}",
|
|
CheckParam: "{{$m.CheckFieldName}}",
|
|
},
|
|
{{ end}}
|
|
}
|