mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Implemented /nick
This commit is contained in:
parent
67f42b2f26
commit
e1f249ce20
@ -253,6 +253,10 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
|
|||||||
if ($scope.textInput.indexOf("/me") === 0) {
|
if ($scope.textInput.indexOf("/me") === 0) {
|
||||||
promise = matrixService.sendEmoteMessage($scope.room_id, $scope.textInput.substr(4));
|
promise = matrixService.sendEmoteMessage($scope.room_id, $scope.textInput.substr(4));
|
||||||
}
|
}
|
||||||
|
else if ($scope.textInput.indexOf("/nick ") === 0) {
|
||||||
|
// Change user display name
|
||||||
|
promise = matrixService.setDisplayName($scope.textInput.substr(6));
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
promise = matrixService.sendTextMessage($scope.room_id, $scope.textInput);
|
promise = matrixService.sendTextMessage($scope.room_id, $scope.textInput);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user