mirror of
https://github.com/discourse/discourse.git
synced 2025-04-26 06:14:28 +08:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
export default Ember.Route.extend({
|
|
model() {
|
|
return Discourse.ajax("/admin/plugins.json").then(res => res.plugins);
|
|
},
|
|
|
|
actions: {
|
|
showSettings() {
|
|
this.transitionTo('adminSiteSettingsCategory', 'plugins');
|
|
}
|
|
}
|
|
});
|
|
|