Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions apps/meteor/ee/server/settings/abac.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,19 @@ export function addSettings(): void {
section: 'ABAC',
i18nDescription: 'ABAC_Enabled_Description',
});
await this.add('ABAC_ShowAttributesInRooms', false, {
type: 'boolean',
public: true,
invalidValue: false,
section: 'ABAC',
enableQuery: { _id: 'ABAC_Enabled', value: true },
});
await this.add('Abac_Cache_Decision_Time_Seconds', 300, {
type: 'int',
public: true,
section: 'ABAC',
invalidValue: 0,
enableQuery: { _id: 'ABAC_Enabled', value: true },
});
},
);
Expand Down
2 changes: 2 additions & 0 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"ABAC_Warning_Modal_Title": "Deactivate ABAC",
"ABAC_Warning_Modal_Confirm_Text": "Deactivate ABAC",
"ABAC_Warning_Modal_Content": "You will not be able to automatically or manually manage users in existing ABAC-managed rooms. To restore a room's default access control, it must be removed from ABAC management in <1>ABAC > Rooms</1>.",
"ABAC_ShowAttributesInRooms": "Show ABAC attributes in rooms",
"ABAC_ShowAttributesInRooms_Description": "Display the ABAC attributes assigned to the room in the contextual bar",
"abac-management": "Manage ABAC configuration",
"abac_removed_user_from_the_room": "was removed by ABAC",
"AI_Actions": "AI actions",
Expand Down
Loading