From 0ef4581fbe7f7d65d012a4f17e41d6be2494e086 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 16 Feb 2022 11:31:08 -0600 Subject: [PATCH 1/2] Change syntax of user mapping environment variable. As per https://docs.funkwhale.audio/admin/ldap.html, the format should be `username:uid`, not the JSON that is currently present. --- conf/env.prod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/env.prod b/conf/env.prod index 2675520..e0cfde9 100644 --- a/conf/env.prod +++ b/conf/env.prod @@ -155,7 +155,7 @@ LDAP_BIND_PASSWORD='' LDAP_SEARCH_FILTER=(|(uid={0})) LDAP_START_TLS=False LDAP_ROOT_DN=ou=users,dc=yunohost,dc=org -LDAP_USER_ATTR_MAP={"username": "uid"} +LDAP_USER_ATTR_MAP=username:uid FUNKWHALE_FRONTEND_PATH=__FINALPATH__/front/dist FUNKWHALE_SPA_HTML_ROOT=__FINALPATH__/front/dist/index.html From b6bd627b579c8faaa5f36630177cdad6e738681a Mon Sep 17 00:00:00 2001 From: yalh76 Date: Thu, 17 Feb 2022 20:34:10 +0100 Subject: [PATCH 2/2] Increase version --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 1c15a03..5a01fd6 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Modern, convivial and free music server", "fr": "Serveur de musique moderne, convivial et gratuit" }, - "version": "1.2.2~ynh1", + "version": "1.2.2~ynh2", "url": "https://funkwhale.audio", "upstream": { "license": "AGPL-3.0-or-later",