mirror of
https://github.com/discourse/discourse-adplugin.git
synced 2025-02-21 02:55:40 +00:00
Allows creating ads within Discourse admin at Plugins > House Ads. Write the ads in html and style them with CSS in themes.
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
export default Discourse.Route.extend({
|
|
actions: {
|
|
moreSettings() {
|
|
this.transitionTo("adminSiteSettingsCategory", "ad_plugin");
|
|
}
|
|
}
|
|
});
|