open-consul/ui-v2/app/helpers/token/is-anonymous.js
John Cowen 52a62f2b8d UI: New ACLs (#4789)
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

9 lines
287 B
JavaScript

import { helper } from '@ember/component/helper';
import { get } from '@ember/object';
const ANONYMOUS_ID = '00000000-0000-0000-0000-000000000002';
export function isAnonymous(params, hash) {
return get(params[0], 'AccessorID') === ANONYMOUS_ID;
}
export default helper(isAnonymous);