Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added roleSetCacheModule and added cache invalidation on invitation / application removal #4955

Merged
merged 13 commits into from
Feb 20, 2025
Merged
Prev Previous commit
Next Next commit
fixed bug on application deletion
  • Loading branch information
hero101 committed Feb 20, 2025
commit eebe86665e6f62745f661124253ff5ac991ea0b3
2 changes: 1 addition & 1 deletion src/domain/access/application/application.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class ApplicationService {
): Promise<IApplication> {
const applicationID = deleteData.ID;
const application = await this.getApplicationOrFail(applicationID, {
relations: { roleSet: true },
relations: { roleSet: true, user: true },
});
if (application.questions) {
for (const question of application.questions) {
Expand Down