mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
31 lines
881 B
JavaScript
31 lines
881 B
JavaScript
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'});
|
|
},
|
|
|
|
setupController: function(controller) {
|
|
controller.resetFilters();
|
|
},
|
|
|
|
actions: {
|
|
showDetailsModal(model) {
|
|
showModal('admin-staff-action-log-details', { model, admin: true });
|
|
this.controllerFor('modal').set('modalClass', 'log-details-modal');
|
|
},
|
|
|
|
showCustomDetailsModal(model) {
|
|
const modalName = (model.action_name + '_details').replace(/\_/g, "-");
|
|
|
|
showModal(modalName, {
|
|
model,
|
|
admin: true,
|
|
templateName: 'site-customization-change'
|
|
});
|
|
this.controllerFor('modal').set('modalClass', 'tabbed-modal log-details-modal');
|
|
}
|
|
}
|
|
});
|