fix: register fcm token on enabling push notification

This commit is contained in:
Abdalhamid Alhamad
2024-12-24 13:00:54 +03:00
parent 3719498c2f
commit bb8cc33d53
5 changed files with 31 additions and 13 deletions

View File

@ -14,9 +14,9 @@ import { JuniorTokenService } from './junior-token.service';
export class JuniorService {
constructor(
private readonly juniorRepository: JuniorRepository,
private readonly customerService: CustomerService,
private readonly juniorTokenService: JuniorTokenService,
@Inject(forwardRef(() => UserService)) private readonly userService: UserService,
@Inject(forwardRef(() => CustomerService)) private readonly customerService: CustomerService,
) {}
@Transactional()