1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-08 00:31:27 +01:00

Add missing IGetTasksForOrganizationQuery query registration (#5343)

This commit is contained in:
Shane Melton 2025-01-29 12:07:03 -08:00 committed by GitHub
parent a5b3f80d71
commit 2f2ef20c74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,5 +20,6 @@ public static class VaultServiceCollectionExtensions
services.AddScoped<IGetTaskDetailsForUserQuery, GetTaskDetailsForUserQuery>();
services.AddScoped<IMarkTaskAsCompleteCommand, MarkTaskAsCompletedCommand>();
services.AddScoped<IGetCipherPermissionsForUserQuery, GetCipherPermissionsForUserQuery>();
services.AddScoped<IGetTasksForOrganizationQuery, GetTasksForOrganizationQuery>();
}
}