FIX: Later versions of ember require dashes in template names

This commit is contained in:
Robin Ward 2016-11-09 14:47:58 -05:00
parent dd9ba3c50c
commit 985b855a5b
46 changed files with 15 additions and 19 deletions

View File

@ -4,5 +4,5 @@ import ListItemView from 'ember-addons/list-item-view';
export default ListView.extend({
height: 700,
rowHeight: 32,
itemViewClass: ListItemView.extend({templateName: "admin/templates/permalinks_list_item"})
itemViewClass: ListItemView.extend({templateName: "admin/templates/permalinks-list-item"})
});

View File

@ -4,5 +4,5 @@ import ListItemView from 'ember-addons/list-item-view';
export default ListView.extend({
height: 700,
rowHeight: 32,
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened_emails_list_item"})
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened-emails-list-item"})
});

View File

@ -4,5 +4,5 @@ import ListItemView from 'ember-addons/list-item-view';
export default ListView.extend({
height: 700,
rowHeight: 32,
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened_ip_addresses_list_item"})
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened-ip-addresses-list-item"})
});

View File

@ -4,5 +4,5 @@ import ListItemView from 'ember-addons/list-item-view';
export default ListView.extend({
height: 700,
rowHeight: 32,
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened_urls_list_item"})
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened-urls-list-item"})
});

View File

@ -4,5 +4,5 @@ import ListItemView from 'ember-addons/list-item-view';
export default ListView.extend({
height: 700,
rowHeight: 75,
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/staff_action_logs_list_item"})
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/staff-action-logs-list-item"})
});

View File

@ -3,9 +3,5 @@ import EmailSettings from 'admin/models/email-settings';
export default Discourse.Route.extend({
model() {
return EmailSettings.find();
},
renderTemplate() {
this.render('admin/templates/email_index', { into: 'adminEmail' });
}
});

View File

@ -1,6 +1,6 @@
export default Discourse.Route.extend({
renderTemplate: function() {
this.render('admin/templates/logs/screened_emails', {into: 'adminLogs'});
this.render('admin/templates/logs/screened-emails', {into: 'adminLogs'});
},
setupController: function() {

View File

@ -1,6 +1,6 @@
export default Discourse.Route.extend({
renderTemplate() {
this.render('admin/templates/logs/screened_ip_addresses', {into: 'adminLogs'});
this.render('admin/templates/logs/screened-ip-addresses', {into: 'adminLogs'});
},
setupController() {

View File

@ -1,6 +1,6 @@
export default Discourse.Route.extend({
renderTemplate: function() {
this.render('admin/templates/logs/screened_urls', {into: 'adminLogs'});
this.render('admin/templates/logs/screened-urls', {into: 'adminLogs'});
},
setupController: function() {

View File

@ -3,7 +3,7 @@ import showModal from 'discourse/lib/show-modal';
export default Discourse.Route.extend({
// TODO: make this automatic using an `{{outlet}}`
renderTemplate: function() {
this.render('admin/templates/logs/staff_action_logs', {into: 'adminLogs'});
this.render('admin/templates/logs/staff-action-logs', {into: 'adminLogs'});
},
setupController: function(controller) {

View File

@ -11,7 +11,7 @@
<div class="modal-tab new-tab {{unless newSelected 'invisible'}}">
{{#if model.new_value}}
{{#with model.new_value}}
{{partial "admin/templates/logs/site_customization_change_details"}}
{{partial "admin/templates/logs/site-customization-change-details"}}
{{/with}}
{{else}}
{{i18n 'admin.logs.staff_actions.deleted'}}
@ -20,7 +20,7 @@
<div class="modal-tab previous-tab {{unless previousSelected 'invisible'}}">
{{#if model.previous_value}}
{{#with model.previous_value}}
{{partial "admin/templates/logs/site_customization_change_details"}}
{{partial "admin/templates/logs/site-customization-change-details"}}
{{/with}}
{{else}}
{{i18n 'admin.logs.staff_actions.no_previous'}}

View File

@ -38,7 +38,7 @@ export default Ember.Controller.extend(ModalFunctionality, {
if (row.length) { buttonRows.push(row); }
this.set('buttonRows', buttonRows);
this.send('changeBulkTemplate', 'modal/bulk_actions_buttons');
this.send('changeBulkTemplate', 'modal/bulk-actions-buttons');
},
perform(operation) {
@ -85,12 +85,12 @@ export default Ember.Controller.extend(ModalFunctionality, {
},
showChangeCategory() {
this.send('changeBulkTemplate', 'modal/bulk_change_category');
this.send('changeBulkTemplate', 'modal/bulk-change-category');
this.set('modal.modalClass', 'topic-bulk-actions-modal full');
},
showNotificationLevel() {
this.send('changeBulkTemplate', 'modal/bulk_notification_level');
this.send('changeBulkTemplate', 'modal/bulk-notification-level');
},
deleteTopics() {

View File

@ -1,7 +1,7 @@
import ModalBodyView from "discourse/views/modal-body";
export default ModalBodyView.extend({
templateName: 'modal/raw_email',
templateName: 'modal/raw-email',
title: I18n.t('raw_email.title'),
resizeModal: function(){