mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
218 B
Text
13 lines
218 B
Text
|
export default Ember.Route.extend({
|
||
|
model() {
|
||
|
return Discourse.ajax("/admin/plugins.json");
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
showSettings() {
|
||
|
this.transitionTo('adminSiteSettingsCategory', 'plugins');
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|