mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
12 lines
385 B
JavaScript
12 lines
385 B
JavaScript
export default Ember.Route.extend({
|
|
model(params) {
|
|
const all = this.modelFor('adminCustomizeCssHtml');
|
|
const model = all.findProperty('id', parseInt(params.site_customization_id));
|
|
return model ? { model, section: params.section } : this.replaceWith('adminCustomizeCssHtml.index');
|
|
},
|
|
|
|
setupController(controller, hash) {
|
|
controller.setProperties(hash);
|
|
}
|
|
});
|