mirror of
https://github.com/flarum/framework.git
synced 2025-03-02 16:38:40 +08:00
13 lines
377 B
JavaScript
13 lines
377 B
JavaScript
![]() |
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.Route.extend({
|
||
|
|
||
|
setupController: function(controller, model) {
|
||
|
this.controllerFor('discussions').set('paneShowing', false);
|
||
|
this.controllerFor('discussions').set('paned', false);
|
||
|
this.controllerFor('application').set('showDiscussionStream', false);
|
||
|
this._super(controller, model);
|
||
|
}
|
||
|
|
||
|
});
|