Implement admin theme support (checkpoint)

This commit is contained in:
Joseph Garrone
2024-10-26 21:23:18 +02:00
parent dc4eac1a04
commit 0e93d4ed09
20 changed files with 401 additions and 73 deletions

View File

@ -37,7 +37,7 @@ async function generateI18nMessages() {
const record: { [themeType: string]: { [language: string]: Dictionary } } = {};
for (const themeType of THEME_TYPES) {
for (const themeType of THEME_TYPES.filter(themeType => themeType !== "admin")) {
const { extractedDirPath } = await downloadKeycloakDefaultTheme({
keycloakVersionId: (() => {
switch (themeType) {