user status: Add ability to edit status text.

This commit is contained in:
Steve Howell
2019-01-26 20:14:33 +00:00
committed by Tim Abbott
parent a2751d90c2
commit a964977960
11 changed files with 170 additions and 0 deletions

View File

@@ -13,6 +13,11 @@ exports.server_update = function (opts) {
status_text: opts.status_text,
},
idempotent: true,
success: function () {
if (opts.success) {
opts.success();
}
},
});
};