You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(branding): add accentColorLight and gravatarDefault
why not in themes? well, accentColor is already here, so this keeps parallel with that (and it's a generic enough theme concept that it seems to be "okay" as a core concept that any frontend *could* use.
And gravatar? well again, it's kinda similar to a logo or icon as a bit of "branding", and any frontend that's using gravatar *may* want to use it, so ...
not 100% solid from the "they belong here" POV, but, those are the justifications - 80% just a "feel" thing.
Copy file name to clipboardExpand all lines: qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/metadata/branding/QBrandingMetaData.java
+80Lines changed: 80 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,8 @@ public class QBrandingMetaData implements TopLevelMetaDataInterface, Cloneable,
41
41
privateStringlogo;
42
42
privateStringicon;
43
43
privateStringaccentColor;
44
+
privateStringaccentColorLight;
45
+
privateStringgravatarDefault;
44
46
45
47
@Deprecated(since = "migrate to use banners map instead")
46
48
privateStringenvironmentBannerText;
@@ -427,4 +429,82 @@ public QBrandingMetaData withBanner(BannerSlot slot, Banner banner)
0 commit comments