From ea58534e9025dc9fdaa53cc2e26f404564da58e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Tue, 23 Sep 2025 16:35:10 +0200 Subject: [PATCH] Remove helper method --- src/lib/features/users/user-store.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lib/features/users/user-store.ts b/src/lib/features/users/user-store.ts index cdf1946ecd..5e093d7f62 100644 --- a/src/lib/features/users/user-store.ts +++ b/src/lib/features/users/user-store.ts @@ -352,13 +352,4 @@ export class UserStore implements IUserStore { return firstInstanceUser ? firstInstanceUser.created_at : null; } - - // this is temporary to find out how many cases we have - async findDeletedUsersWithEmail(): Promise { - return this.db(TABLE) - .select('*') - .whereNotNull('deleted_at') - .andWhereRaw('length(email) > 0') - .then((rows) => rows.map(rowToUser)); - } }