2016-11-03 18:42:26 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2017-06-28 12:56:18 +00:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2016-11-03 18:42:26 +00:00
|
|
|
|
2024-09-09 13:57:16 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2016-11-03 18:42:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** The types of page which can be shown by the LoggedInView */
|
2021-09-27 10:40:34 +00:00
|
|
|
enum PageType {
|
|
|
|
HomePage = "home_page",
|
|
|
|
RoomView = "room_view",
|
|
|
|
UserView = "user_view",
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PageType;
|