summaryrefslogtreecommitdiffstats
path: root/src/models/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/constants.ts')
-rw-r--r--src/models/constants.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/models/constants.ts b/src/models/constants.ts
index 67b0e7ee..856d8209 100644
--- a/src/models/constants.ts
+++ b/src/models/constants.ts
@@ -65,6 +65,7 @@ const MEMBER_TYPE_CIRCLE: MemberType = 16
export const CIRCLE_DESC = t('contacts', 'Circles allow you to create groups with other users on a Nextcloud instance and share with them.')
// Circles config flags
+const CIRCLE_CONFIG_PERSONAL: CircleConfig = 2 // Personal circle, only the owner can see it.
const CIRCLE_CONFIG_SYSTEM: CircleConfig = 4 // System Circle (not managed by the official front-end). Meaning some config are limited
const CIRCLE_CONFIG_VISIBLE: CircleConfig = 8 // Visible to everyone, if not visible, people have to know its name to be able to find it
const CIRCLE_CONFIG_OPEN: CircleConfig = 16 // Circle is open, people can join
@@ -195,6 +196,7 @@ export enum MemberTypes {
}
export enum CircleConfigs {
+ PERSONAL = CIRCLE_CONFIG_PERSONAL,
SYSTEM = CIRCLE_CONFIG_SYSTEM,
VISIBLE = CIRCLE_CONFIG_VISIBLE,
OPEN = CIRCLE_CONFIG_OPEN,