From 692f9871c7a1f336ee31609f559dd6dd5e3627fe Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Tue, 10 Sep 2024 17:32:46 +0200 Subject: [PATCH] Enable mod-authtoken early Move mod-authtoken to the top so that it gets installed early. Then it is available when enabling a second module that requires a token to access a permission protected API of a third module. https://folio-project.slack.com/archives/CFQU1MF61/p1725977004958399?thread_ts=1725933118.184429&cid=CFQU1MF61 mod-authtoken requires mod-permissions and mod-users therefore we use this natural order: 1. mod-permissions 2. mod-users 3. mod-authtoken --- install-extras.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/install-extras.json b/install-extras.json index 8ad47ec04c..e2a5e2e084 100644 --- a/install-extras.json +++ b/install-extras.json @@ -3,6 +3,14 @@ "id": "mod-permissions-6.5.0", "action": "enable" }, + { + "id": "mod-users-19.3.2", + "action": "enable" + }, + { + "id": "mod-authtoken-2.15.2", + "action": "enable" + }, { "id": "edge-connexion-1.3.1", "action": "enable" @@ -71,10 +79,6 @@ "id": "mod-email-1.17.0", "action": "enable" }, - { - "id": "mod-users-19.3.2", - "action": "enable" - }, { "id": "mod-users-bl-7.7.4", "action": "enable" @@ -247,10 +251,6 @@ "id": "mod-quick-marc-5.1.1", "action": "enable" }, - { - "id": "mod-authtoken-2.15.2", - "action": "enable" - }, { "id": "mod-calendar-3.1.0", "action": "enable" @@ -331,4 +331,4 @@ "id": "mod-serials-management-1.0.3", "action": "enable" } -] \ No newline at end of file +]