mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 05:35:13 +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"
|
||
|
)
|