1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00: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

View File

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