Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions backend/typescript/services/implementations/authService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ class AuthService implements IAuthService {
decodedIdToken.uid,
);

// eslint-disable-next-line no-console
console.log("DUMMY COMMIT");
// eslint-disable-next-line no-console
console.log("DUMMY COMMIT2");

const firebaseUser = await firebaseAdmin
.auth()
.getUser(decodedIdToken.uid);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ApplicantRecordDTO } from "../../types";
import { ApplicantRecordDTO, ApplicationStatus } from "../../types";

interface IApplicantRecordService {
updateApplicantStatus(
Expand All @@ -8,7 +8,7 @@ interface IApplicantRecordService {
bulkUpdateApplicantStatus(
applicantRecordIds: string[],
status: ApplicationStatus,
): Promise<ApplicantRecordDto[]>;
): Promise<ApplicantRecordDTO[]>;
setApplicantRecordFlag(
applicantRecordId: string,
flagValue: boolean,
Expand Down
Loading