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