Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Set room state and account data via commands #2007

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions lib/src/utils/commands_extension.dart
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,30 @@ extension CommandsClientExtension on Client {
await unignoreUser(mxid);
return null;
});
addCommand('setRoomState', (args) async {
final arguments = args.msg.split(' ');
final roomId = arguments.removeAt(0);
final eventType = arguments.removeAt(0);
final stateKey = arguments.removeAt(0);
final body = jsonDecode(arguments.join(' '));
await setRoomStateWithKey(roomId, eventType, stateKey, body);
return null;
});
addCommand('setAccountData', (args) async {
final arguments = args.msg.split(' ');
final eventType = arguments.removeAt(0);
final body = jsonDecode(arguments.join(' '));
await setAccountData(userID!, eventType, body);
return null;
});
addCommand('setRoomAccountData', (args) async {
final arguments = args.msg.split(' ');
final roomId = arguments.removeAt(0);
final eventType = arguments.removeAt(0);
final body = jsonDecode(arguments.join(' '));
await setAccountDataPerRoom(userID!, roomId, eventType, body);
return null;
});
}
}

Expand Down
Loading