2015-02-07 06:32:59 +08:00
|
|
|
export default Ember.Route.extend({
|
|
|
|
model() {
|
2015-02-11 01:14:23 +08:00
|
|
|
return this.store.findAll('plugin');
|
2015-02-07 06:32:59 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
showSettings() {
|
|
|
|
this.transitionTo('adminSiteSettingsCategory', 'plugins');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|