github.com/outbrain/consul@v1.4.5/ui-v2/app/templates/dc/acls/-notifications.hbs (about) 1 {{#if (eq type 'create')}} 2 {{#if (eq status 'success') }} 3 Your ACL token has been added. 4 {{else}} 5 There was an error adding your ACL token. 6 {{/if}} 7 {{else if (eq type 'update') }} 8 {{#if (eq status 'success') }} 9 Your ACL token has been saved. 10 {{else}} 11 There was an error saving your ACL token. 12 {{/if}} 13 {{ else if (eq type 'delete')}} 14 {{#if (eq status 'success') }} 15 Your ACL token was deleted. 16 {{else}} 17 There was an error deleting your ACL token. 18 {{/if}} 19 {{ else if (eq type 'logout')}} 20 {{#if (eq status 'success') }} 21 You are now logged out. 22 {{else}} 23 There was an error logging out. 24 {{/if}} 25 {{ else if (eq type 'use')}} 26 {{#if (eq status 'success') }} 27 Now using new ACL token. 28 {{else}} 29 There was an error using that ACL token. 30 {{/if}} 31 {{ else if (eq type 'clone')}} 32 {{#if (eq status 'success') }} 33 Your ACL token was cloned. 34 {{else}} 35 There was an error cloning your ACL token. 36 {{/if}} 37 {{/if}} 38