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