Add PersonaLookahead operation
This commit is contained in:
parent
554a757d02
commit
7312c80e27
|
@ -174,12 +174,13 @@ type Operation string
|
|||
|
||||
const (
|
||||
// The operations below are called per path
|
||||
CreateOperation Operation = "create"
|
||||
ReadOperation = "read"
|
||||
UpdateOperation = "update"
|
||||
DeleteOperation = "delete"
|
||||
ListOperation = "list"
|
||||
HelpOperation = "help"
|
||||
CreateOperation Operation = "create"
|
||||
ReadOperation = "read"
|
||||
UpdateOperation = "update"
|
||||
DeleteOperation = "delete"
|
||||
ListOperation = "list"
|
||||
HelpOperation = "help"
|
||||
PersonaLookaheadOperation = "persona-lookahead"
|
||||
|
||||
// The operations below are called globally, the path is less relevant.
|
||||
RevokeOperation Operation = "revoke"
|
||||
|
|
Loading…
Reference in New Issue