mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
12 lines
200 B
Go
12 lines
200 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type permissionCheck func(ctx context.Context, permission, orgID, resourceID string, allowSelf bool) (err error)
|
||
|
|
||
|
const (
|
||
|
permissionUserWrite = "user.write"
|
||
|
)
|