Skip to content

Commit

Permalink
fix: add missing injector (#63)
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 authored Jun 13, 2024
1 parent ddfa43f commit e3a1435
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/holder-backend/src/app/auth/auth.service.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { Injectable } from '@nestjs/common';
import { EventEmitter2 } from '@nestjs/event-emitter';

export const USER_DELETED_EVENT = 'user.deleted';

export class UserDeletedEvent {
id: string;
}

@Injectable()
export class AuthService {
constructor(private eventEmitter: EventEmitter2) {}

Expand Down

0 comments on commit e3a1435

Please sign in to comment.