Skip to content

Commit

Permalink
fix(be): fix typo (#1947)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaehyeon1020 authored Aug 12, 2024
1 parent b4ca303 commit 965a046
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/backend/apps/client/src/contest/contest.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export class ContestService {
return {
...contest,
// userId가 없거나(로그인 안됨) contest에 참여중이지 않은 경우 false
isRegisterd:
isRegistered:
!(await this.prisma.contestRecord.findFirst({
where: {
userId,
Expand Down
14 changes: 7 additions & 7 deletions collection/client/Contest/Get finished contests/Succeed.bru
Original file line number Diff line number Diff line change
Expand Up @@ -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을 기준으로 검색할 키워드. 포함하지 않으면 검색을 수행하지 않음|

}

0 comments on commit 965a046

Please sign in to comment.