feat(confluence-import): hide API importer behind BETA_CONFLUENCE_IMPORTER flag

This commit is contained in:
Philipinho
2026-06-15 21:43:38 +01:00
parent 97a1248818
commit feb5167771
5 changed files with 19 additions and 1 deletions
+4
View File
@@ -43,6 +43,10 @@ export function isCloud(): boolean {
return castToBoolean(getConfigValue("CLOUD"));
}
export function isBetaConfluenceImporter(): boolean {
return castToBoolean(getConfigValue("BETA_CONFLUENCE_IMPORTER"));
}
export function getAvatarUrl(
avatarUrl: string,
type: AvatarIconType = AvatarIconType.AVATAR,