1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-31 02:59:44 +02:00

Add missing super call in routes

This commit is contained in:
sauls8t 2018-12-20 13:05:06 +00:00
parent 329c43eba0
commit 2042454e77
5 changed files with 13 additions and 3 deletions

View file

@ -1,11 +1,11 @@
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
// by contacting <sales@documize.com>.
//
// https://documize.com
@ -33,7 +33,9 @@ export default Route.extend(AuthenticatedRouteMixin, {
},
setupController(controller, model) {
this._super(controller, model);
controller.set('model', model);
controller.set("folder", this.get('folderService.currentFolder'));
}
});
});