hino / app / controllers / inbox / outstanding-approval-hoyu.js
outstanding-approval-hoyu.js
Raw
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';

export default Controller.extend({
	inboxOutstanding: service(),

	init() {
		this._super(...arguments);
		this.set('model', this.inboxOutstanding.model);
	}
});