2017-06-28 22:32:02 +01:00
|
|
|
import Rule from 'discourse/plugins/discourse-chat/admin/models/rule'
|
2017-06-28 15:12:37 +01:00
|
|
|
import { ajax } from 'discourse/lib/ajax';
|
|
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2017-06-28 18:04:21 +01:00
|
|
|
import showModal from 'discourse/lib/show-modal';
|
|
|
|
|
|
2017-06-28 15:12:37 +01:00
|
|
|
|
|
|
|
|
export default Ember.Controller.extend({
|
2017-06-29 12:56:48 +01:00
|
|
|
modalShowing: false,
|
2017-06-28 18:04:21 +01:00
|
|
|
|
|
|
|
|
actions:{
|
|
|
|
|
edit(rule){
|
2017-06-29 12:56:48 +01:00
|
|
|
this.set('modalShowing', true);
|
2017-06-28 18:04:21 +01:00
|
|
|
showModal('admin-plugins-chat-edit-rule', { model: rule, admin: true });
|
|
|
|
|
},
|
2017-06-29 12:56:48 +01:00
|
|
|
|
2017-06-28 18:04:21 +01:00
|
|
|
}
|
2017-06-28 15:12:37 +01:00
|
|
|
|
|
|
|
|
});
|