feat: add client side action:flag.create

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 2a4f4f5aec
commit 09de364e93

@ -63,13 +63,15 @@ define('flags', function () {
if (!type || !id || !reason) { if (!type || !id || !reason) {
return; return;
} }
socket.emit('flags.create', { type: type, id: id, reason: reason }, function (err) { var data = { type: type, id: id, reason: reason };
socket.emit('flags.create', data, function (err, flagId) {
if (err) { if (err) {
return app.alertError(err.message); return app.alertError(err.message);
} }
flagModal.modal('hide'); flagModal.modal('hide');
app.alertSuccess('[[flags:modal-submit-success]]'); app.alertSuccess('[[flags:modal-submit-success]]');
$(window).trigger('action:flag.create', { flagId: flagId, data: data });
}); });
} }

Loading…
Cancel
Save