281f6a6fba
* Make the not-auth'd messages in the app less token-centric * new helper to conditionally capitalize handlebars strings
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
import Component from '@ember/component';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
@tagName('')
|
|
export default class ForbiddenMessage extends Component {
|
|
@service token;
|
|
@service store;
|
|
|
|
get authMethods() {
|
|
return this.store.findAll('auth-method');
|
|
}
|
|
}
|