Rename persona to alias (#3420)

Merging this will break the build. I'll fix it post merge by updating the vendor libs.
This commit is contained in:
Vishal Nayak
2017-10-04 13:35:05 -04:00
committed by GitHub
parent 5c4fb67fb8
commit 8ae19b2686
3 changed files with 13 additions and 13 deletions

View File

@@ -174,13 +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"
PersonaLookaheadOperation = "persona-lookahead"
CreateOperation Operation = "create"
ReadOperation = "read"
UpdateOperation = "update"
DeleteOperation = "delete"
ListOperation = "list"
HelpOperation = "help"
AliasLookaheadOperation = "alias-lookahead"
// The operations below are called globally, the path is less relevant.
RevokeOperation Operation = "revoke"