get ข้อมูล by keycloak (ลูกจ้าง)

This commit is contained in:
Bright 2024-05-23 18:30:16 +07:00
parent 24c5cbef55
commit 58fe2f08fd
21 changed files with 423 additions and 3 deletions

View file

@ -36,6 +36,19 @@ export class ProfileLeaveEmployeeController extends Controller {
private leaveHistoryRepo = AppDataSource.getRepository(ProfileLeaveHistory);
private leaveTypeRepository = AppDataSource.getRepository(LeaveType);
@Get("user")
public async getLeaveUser(@Request() request: { user: Record<string, any> }) {
const profile = await this.profileRepo.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.leaveRepo.find({
relations: { leaveType: true },
where: { profileEmployeeId: profile.id },
});
return new HttpSuccess(record);
}
@Get("{profileId}")
public async getLeave(@Path() profileId: string) {
const record = await this.leaveRepo.find({