Renamed channels to rooms (#30)

This commit is contained in:
unknown 2021-08-31 18:43:31 +05:30
parent b5dfc337ec
commit 705910d9e0
42 changed files with 291 additions and 291 deletions

View file

@ -27,16 +27,16 @@ function openInviteList() {
});
}
function openPublicChannels(searchTerm) {
function openPublicRooms(searchTerm) {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_PUBLIC_CHANNELS,
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
searchTerm,
});
}
function openCreateChannel() {
function openCreateRoom() {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_CREATE_CHANNEL,
type: cons.actions.navigation.OPEN_CREATE_ROOM,
});
}
@ -75,8 +75,8 @@ export {
selectRoom,
togglePeopleDrawer,
openInviteList,
openPublicChannels,
openCreateChannel,
openPublicRooms,
openCreateRoom,
openInviteUser,
openSettings,
openEmojiBoard,