mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
28 lines
902 B
JavaScript
28 lines
902 B
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
export default ObjectController.extend(ModalFunctionality, {
|
|
|
|
submitDisabled: function() {
|
|
return (!this.get('reason') || this.get('reason').length < 1);
|
|
}.property('reason'),
|
|
|
|
actions: {
|
|
suspend: function() {
|
|
if (this.get('submitDisabled')) return;
|
|
var duration = parseInt(this.get('duration'), 10);
|
|
if (duration > 0) {
|
|
var self = this;
|
|
this.send('hideModal');
|
|
this.get('model').suspend(duration, this.get('reason')).then(function() {
|
|
window.location.reload();
|
|
}, function(e) {
|
|
var error = I18n.t('admin.user.suspend_failed', { error: "http: " + e.status + " - " + e.body });
|
|
bootbox.alert(error, function() { self.send('showModal'); });
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|