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

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

	// outstandingApprovalDMS: null,

	init() {
		this._super(...arguments);
		// this.set('outstandingApprovalDMS', this.get('inboxOutstanding.outstandingApprovalDMS', this.inboxOutstanding));
		// this.inboxOutstanding.loadOutstandingApprovalDMS();
		this.set('model', this.inboxOutstanding.model);
	}
});