From 6a0acd9cad0a00f2ef09a10124d2d40f57e220f6 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 2 Jun 2026 02:10:19 -0600 Subject: [PATCH] fix: update schedule scoping from user to organization Changed the schedule scoping in the schedule utility to use organizationId instead of userId, ensuring that schedules are shared across all owners and admins within the same organization. This aligns with the recent changes to enhance organizational resource management. --- packages/server/src/utils/schedules/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/utils/schedules/index.ts b/packages/server/src/utils/schedules/index.ts index e430a7dde..dfcff1fbb 100644 --- a/packages/server/src/utils/schedules/index.ts +++ b/packages/server/src/utils/schedules/index.ts @@ -11,7 +11,7 @@ export const initSchedules = async () => { server: true, application: true, compose: true, - user: true, + organization: true, }, });