From 965a0469467864d27eb0a16a7aebccfd9d90da2c Mon Sep 17 00:00:00 2001 From: Jaehyeon Kim Date: Mon, 12 Aug 2024 14:49:57 +0900 Subject: [PATCH] fix(be): fix typo (#1947) --- .../apps/client/src/contest/contest.service.ts | 2 +- .../Contest/Get finished contests/Succeed.bru | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/backend/apps/client/src/contest/contest.service.ts b/apps/backend/apps/client/src/contest/contest.service.ts index f1929feae9..c7d84f5c7f 100644 --- a/apps/backend/apps/client/src/contest/contest.service.ts +++ b/apps/backend/apps/client/src/contest/contest.service.ts @@ -266,7 +266,7 @@ export class ContestService { return { ...contest, // userId가 없거나(로그인 안됨) contest에 참여중이지 않은 경우 false - isRegisterd: + isRegistered: !(await this.prisma.contestRecord.findFirst({ where: { userId, diff --git a/collection/client/Contest/Get finished contests/Succeed.bru b/collection/client/Contest/Get finished contests/Succeed.bru index 45edac1a7a..e976788676 100644 --- a/collection/client/Contest/Get finished contests/Succeed.bru +++ b/collection/client/Contest/Get finished contests/Succeed.bru @@ -30,20 +30,20 @@ assert { docs { ## Add Finished Contests - + 종료된 대회들을 가져옵니다. - + pagination이 가능하며, 제목 검색 기능을 포함합니다. - - 각 대회에 유저가 등록되어있는지를 표시하는 `isRegisterd` 필드가 함께 반환합니다. (로그인되어있지 않은 경우 모두 false) - + + 각 대회에 유저가 등록되어있는지를 표시하는 `isRegistered` 필드가 함께 반환합니다. (로그인되어있지 않은 경우 모두 false) + ### Query - + | 이름 | 타입 | 설명 | |-----|-----|-----| |take |Integer|가져올 대회 개수 (default: 10)| |cursor|Integer|cursor 값 다음의 ID를 가진 대회들을 반환| |groupId |Integer|대회가 속한 Group ID (default: 1)| |search|String|title을 기준으로 검색할 키워드. 포함하지 않으면 검색을 수행하지 않음| - + }