Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#3] 그룹 사이즈 증가 api 추가 #59

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/api-docs
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,28 @@ paths:
'409':
description: 이미 가입한 사용자

/groups/{groupId}/increase-group-size:
post:
tags:
- groups
summary: 그룹 인원수 변경
description: 그룹 최대 인원수를 증가시킵니다.
parameters:
- in: path
name: groupId
required: true
schema:
type: integer
- in: query
name: size
required: true
schema:
type: integer
description: 원하는 그룹의 사이즈. 현재 그룹 사이즈가 10이고, 이 옵션이 25라면 요청 성공 후 그룹의 사이즈는 25가 됨.
responses:
'200':
description: 그룹 사이즈 증가를 위한 결제 요청 성공

/groups/{groupId}/requests:
get:
tags:
Expand Down
Loading