open-consul/ui-v2/app/templates/dc/acls/tokens/-notifications.hbs
John Cowen 52a62f2b8d UI: New ACLs (#4789)
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

45 lines
1.1 KiB
Handlebars

{{#if (eq type 'create')}}
{{#if (eq status 'success') }}
The token has been added.
{{else}}
There was an error adding the token.
{{/if}}
{{else if (eq type 'update') }}
{{#if (eq status 'success') }}
The token has been saved.
{{else}}
There was an error saving the token.
{{/if}}
{{ else if (eq type 'delete')}}
{{#if (eq status 'success') }}
The token was deleted.
{{else}}
There was an error deleting the token.
{{/if}}
{{ else if (eq type 'logout')}}
{{#if (eq status 'success') }}
You are now logged out.
{{else}}
There was an error logging out.
{{/if}}
{{ else if (eq type 'clone')}}
{{#if (eq status 'success') }}
The token has been cloned as {{truncate subject.AccessorID 8 false}}
{{else}}
There was an error cloning the token.
{{/if}}
{{ else if (eq type 'authorize')}}
{{#if (eq status 'success') }}
You are now logged in.
{{else}}
There was an error, please check your SecretID/Token
{{/if}}
{{ else if (eq type 'use')}}
{{#if (eq status 'success') }}
You are now using the new ACL token
{{else}}
There was an error using that ACL token.
{{/if}}
{{/if}}