From a4e7253b6ed84ef74e1aa7767ffe9c23a8a94ecc Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Fri, 11 Jul 2025 09:15:15 +0200 Subject: [PATCH] [web] Group audit log for Feature disablement (#26930) Adds a `update-group-policy` group audit log including the policies that are toggled. GitOrigin-RevId: a582d612d20c8547995228e6b92b730373a89b63 --- services/web/test/acceptance/src/helpers/Subscription.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/web/test/acceptance/src/helpers/Subscription.mjs b/services/web/test/acceptance/src/helpers/Subscription.mjs index 6b6f87e4d6..1ce0e87afd 100644 --- a/services/web/test/acceptance/src/helpers/Subscription.mjs +++ b/services/web/test/acceptance/src/helpers/Subscription.mjs @@ -85,7 +85,10 @@ class PromisifiedSubscription { } async enableManagedUsers() { - await Modules.promises.hooks.fire('enableManagedUsers', this._id) + await Modules.promises.hooks.fire('enableManagedUsers', this._id, { + initiatorId: this.admin_id, + ipAddress: '123.456.789.0', + }) } async disableManagedUsers() {