Mixin that the application controller needs to use in order to be able to use certain things like the login modal functionality

Usage: (in controllers/application.js)

import Ember from 'ember';
import ApplicationControllerMixin from '@bennerinformatics/ember-fw-gc/mixins/application-controller';

export default Ember.Controller.extend(ApplicationControllerMixin, {
    // more code here
});

This should be already added for you in the application controller, as this is added by default by the Generator FW.

Show: