From 566bdc9627113d5c0d520ebfd826684e4f9abeaf Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Tue, 10 Sep 2024 17:08:22 +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 c5dcc099c5..d091a8cc84 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.1", + "action": "enable" + }, + { + "id": "mod-authtoken-2.15.1", + "action": "enable" + }, { "id": "edge-connexion-1.2.0", "action": "enable" @@ -71,10 +79,6 @@ "id": "mod-email-1.17.0", "action": "enable" }, - { - "id": "mod-users-19.3.1", - "action": "enable" - }, { "id": "mod-users-bl-7.7.0", "action": "enable" @@ -247,10 +251,6 @@ "id": "mod-quick-marc-5.1.0", "action": "enable" }, - { - "id": "mod-authtoken-2.15.1", - "action": "enable" - }, { "id": "mod-calendar-3.1.0", "action": "enable" @@ -335,4 +335,4 @@ "id": "mod-consortia-1.1.0", "action": "enable" } -] \ No newline at end of file +]