You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-04 11:51:45 +03:00
Add the unflip slashcommand
Signed-off-by: Emmanouil Kampitakis <info+github@kampitakis.de>
This commit is contained in:
committed by
Emmanouil Kampitakis
parent
98a1b7a2d8
commit
f4d3668214
@@ -179,6 +179,19 @@ export const Commands = [
|
|||||||
},
|
},
|
||||||
category: CommandCategories.messages,
|
category: CommandCategories.messages,
|
||||||
}),
|
}),
|
||||||
|
new Command({
|
||||||
|
command: 'unflip',
|
||||||
|
args: '<message>',
|
||||||
|
description: _td('Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message'),
|
||||||
|
runFn: function(roomId, args) {
|
||||||
|
let message = '┬──┬ ノ( ゜-゜ノ)';
|
||||||
|
if (args) {
|
||||||
|
message = message + ' ' + args;
|
||||||
|
}
|
||||||
|
return success(MatrixClientPeg.get().sendTextMessage(roomId, message));
|
||||||
|
},
|
||||||
|
category: CommandCategories.messages,
|
||||||
|
}),
|
||||||
new Command({
|
new Command({
|
||||||
command: 'lenny',
|
command: 'lenny',
|
||||||
args: '<message>',
|
args: '<message>',
|
||||||
|
|||||||
Reference in New Issue
Block a user