2020-09-15 06:27:40 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// see settings.md for documentation on conventions
|
|
|
|
export enum UIFeature {
|
2020-09-18 19:33:02 +02:00
|
|
|
AdvancedEncryption = "UIFeature.advancedEncryption",
|
2020-09-15 16:55:03 +02:00
|
|
|
URLPreviews = "UIFeature.urlPreviews",
|
2020-09-16 12:38:50 +02:00
|
|
|
Widgets = "UIFeature.widgets",
|
2020-09-16 14:40:27 +02:00
|
|
|
Voip = "UIFeature.voip",
|
2020-09-16 11:59:14 +02:00
|
|
|
Feedback = "UIFeature.feedback",
|
2020-09-17 12:55:10 +02:00
|
|
|
Registration = "UIFeature.registration",
|
|
|
|
PasswordReset = "UIFeature.passwordReset",
|
|
|
|
Deactivate = "UIFeature.deactivate",
|
2020-09-16 17:06:17 +02:00
|
|
|
ShareQRCode = "UIFeature.shareQrCode",
|
|
|
|
ShareSocial = "UIFeature.shareSocial",
|
2020-09-16 15:45:34 +02:00
|
|
|
IdentityServer = "UIFeature.identityServer",
|
2020-09-17 14:25:18 +02:00
|
|
|
ThirdPartyID = "UIFeature.thirdPartyId",
|
2020-09-16 12:26:15 +02:00
|
|
|
Flair = "UIFeature.flair",
|
2020-09-16 13:55:04 +02:00
|
|
|
Communities = "UIFeature.communities",
|
2020-09-16 13:14:33 +02:00
|
|
|
AdvancedSettings = "UIFeature.advancedSettings",
|
2020-10-28 02:20:25 +01:00
|
|
|
RoomHistorySettings = "UIFeature.roomHistorySettings",
|
2020-09-15 06:27:40 +02:00
|
|
|
}
|