2015-02-06 17:32:59 -05:00
|
|
|
export default Ember.Route.extend({
|
|
|
|
model() {
|
2015-02-10 12:14:23 -05:00
|
|
|
return this.store.findAll('plugin');
|
2015-02-06 17:32:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
showSettings() {
|
|
|
|
this.transitionTo('adminSiteSettingsCategory', 'plugins');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|