Remove old settings components (#2296)

This commit is contained in:
Ajay Bura
2025-03-28 20:16:01 +11:00
committed by GitHub
parent 82805dcfdd
commit 12ae94cd60
37 changed files with 6 additions and 3476 deletions

View File

@@ -1,13 +1,6 @@
import appDispatcher from '../dispatcher';
import cons from '../state/cons';
export function openSpaceSettings(roomId, tabText) {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_SPACE_SETTINGS,
roomId,
tabText,
});
}
export function openSpaceAddExisting(roomId, spaces = false) {
appDispatcher.dispatch({
@@ -17,14 +10,6 @@ export function openSpaceAddExisting(roomId, spaces = false) {
});
}
export function toggleRoomSettings(roomId, tabText) {
appDispatcher.dispatch({
type: cons.actions.navigation.TOGGLE_ROOM_SETTINGS,
roomId,
tabText
});
}
export function openCreateRoom(isSpace = false, parentId = null) {
appDispatcher.dispatch({