get ข้อมูล by keycloak

This commit is contained in:
Kittapath 2024-05-23 16:44:37 +07:00
parent f6bcd35e14
commit ff0be7af48
22 changed files with 633 additions and 137 deletions

View file

@ -36,6 +36,19 @@ export class ProfileLeaveController 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: { id: profile.id },
});
return new HttpSuccess(record);
}
@Get("{profileId}")
@Example({
status: 200,