mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
13 lines
209 B
JavaScript
13 lines
209 B
JavaScript
export default Ember.Route.extend({
|
|
model() {
|
|
return this.store.findAll('plugin');
|
|
},
|
|
|
|
actions: {
|
|
showSettings() {
|
|
this.transitionTo('adminSiteSettingsCategory', 'plugins');
|
|
}
|
|
}
|
|
});
|
|
|