From a137af00ca32df3ea15d7a522304ef0fb7fdb296 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Wed, 10 Feb 2021 15:38:37 +1000 Subject: [PATCH] Set noggin default avatar to retro The default in noggin for the libravatar default avatar (i.e. the avatar that shows when a user hasnt set their avatar) is an autogenerated robot. However, the majority of other applications in Fedora Infra use the "retro" avatar option. This changes the config of noggin in Fedora Accounts to use the retro option, rather than the robot one. Signed-off-by: Ryan Lerch --- roles/openshift-apps/noggin/templates/noggin.cfg.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/openshift-apps/noggin/templates/noggin.cfg.py b/roles/openshift-apps/noggin/templates/noggin.cfg.py index 936f6871f2..e18602cae4 100644 --- a/roles/openshift-apps/noggin/templates/noggin.cfg.py +++ b/roles/openshift-apps/noggin/templates/noggin.cfg.py @@ -35,6 +35,9 @@ MAIL_SERVER = "bastion.fedoraproject.org" # Theme THEME = "{{ noggin_theme }}" +# Auto-gen avatar type to show if no avatar set +AVATAR_DEFAULT_TYPE = "retro" + # Those file should be mounted from OpenShift secrets FREEIPA_ADMIN_PASSWORD = from_file('/etc/noggin-secrets/ipa-admin') FERNET_SECRET = from_file('/etc/noggin-secrets/fernet').encode('utf-8')