Add PersonaLookahead operation

This commit is contained in:
Jeff Mitchell 2017-09-14 20:54:09 -04:00
parent 554a757d02
commit 7312c80e27
1 changed files with 7 additions and 6 deletions

View File

@ -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"