* remove bot settings files * exclude bot in invite page * listen to language / CERF level changes and update bot DM settings * Update lib/pangea/common/controllers/pangea_controller.dart Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
16 lines
405 B
Dart
16 lines
405 B
Dart
part of "pangea_room_extension.dart";
|
|
|
|
extension RoomCapacityExtension on Room {
|
|
Future<void> updateRoomCapacity(int newCapacity) =>
|
|
client.setRoomStateWithKey(
|
|
id,
|
|
PangeaEventTypes.capacity,
|
|
'',
|
|
{'capacity': newCapacity},
|
|
);
|
|
|
|
int? get capacity {
|
|
final t = getState(PangeaEventTypes.capacity)?.content['capacity'];
|
|
return t is int ? t : null;
|
|
}
|
|
}
|