fix: return more data

This commit is contained in:
Methapon2001 2024-03-22 14:56:04 +07:00
parent 07d2833b41
commit ff3f005b91

View file

@ -48,7 +48,6 @@ export class ProfileOtherController extends Controller {
public async getOther(@Path() profileId: string) {
const lists = await this.otherRepository.find({
where: { profileId: profileId },
select: ["id", "date", "detail"],
});
return new HttpSuccess(lists);
}
@ -75,7 +74,6 @@ export class ProfileOtherController extends Controller {
public async otherHistory(@Path() otherId: string) {
const record = await this.otherHistoryRepository.find({
where: { profileOtherId: otherId },
select: ["id", "date", "detail"],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);