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

21 lines
486 B
Handlebars

{{#if (eq type 'create')}}
{{#if (eq status 'success') }}
Your policy has been added.
{{else}}
There was an error adding your policy.
{{/if}}
{{else if (eq type 'update') }}
{{#if (eq status 'success') }}
Your policy has been saved.
{{else}}
There was an error saving your policy.
{{/if}}
{{ else if (eq type 'delete')}}
{{#if (eq status 'success') }}
Your policy was deleted.
{{else}}
There was an error deleting your policy.
{{/if}}
{{/if}}