1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: delete project action (#7934)

This commit is contained in:
Mateusz Kwasniewski 2024-08-20 11:46:12 +02:00 committed by GitHub
parent 7c774b22e8
commit 02c8250905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -578,7 +578,7 @@ export class ProjectDeletedEvent extends BaseEvent {
project: string;
auditUser: IAuditUser;
}) {
super(PROJECT_ARCHIVED, eventData.auditUser);
super(PROJECT_DELETED, eventData.auditUser);
this.project = eventData.project;
}
}