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

feat: 태그 관리자 용의 api 분리 #590

Merged
merged 1 commit into from
Jul 23, 2023
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
61 changes: 59 additions & 2 deletions backend/src/v1/routes/tags.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ router
* get:
* tags:
* - tags
* summary: 슈퍼 태그에 속한 서브 태그 목록을 가져온다.
* summary: 슈퍼 태그에 속한 서브 태그 목록을 가져온다. 이는 일반 사용자를 위해 사용된다.
* description: superTagId에 해당하는 슈퍼 태그에 속한 서브 태그 목록을 가져온다. 태그 병합 페이지에서 슈퍼 태그의
* 서브 태그를 가져올 때 사용한다.
* parameters:
Expand Down Expand Up @@ -686,7 +686,64 @@ router
* '500':
* description: db 에러
*/
.get('/:superTagId/sub', authValidate(roleSet.librarian), searchSubTags);
.get('/:superTagId/sub', authValidate(roleSet.all), searchSubTags);

router
/**
* @openapi
* /api/tags/manage/{superTagId}/sub:
* get:
* tags:
* - tags
* summary: 슈퍼 태그에 속한 서브 태그 목록을 가져온다. 이는 태그 관리를 위해 사용된다.
* description: superTagId에 해당하는 슈퍼 태그에 속한 서브 태그 목록을 가져온다. 태그 병합 페이지에서 슈퍼 태그의
* 서브 태그를 가져올 때 사용한다.
* parameters:
* - in: path
* name: superTagId
* description: 서브 태그를 조회할 슈퍼 태그의 id
* required: true
* responses:
* '200':
* description: 슈퍼 태그에 속한 서브 태그들을 반환한다.
* content:
* application/json:
* schema:
* type: object
* properties:
* items:
* description: 슈퍼 태그에 속한 서브 태그 목록
* type: array
* items:
* type: object
* properties:
* id:
* description: 서브 태그 고유 id
* type: integer
* content:
* description: 서브 태그의 내용
* type: string
* login:
* description: 서브 태그를 작성한 카뎃의 인트라 id
* type: string
* example:
* - id: 0
* content: 도커_쿠버네티스
* login: yena
* - id: 42
* content: 도커
* login: yena
* - id: 50
* content: 도커
* login: jang-cho
* '400':
* description: 잘못된 요청. 잘못 입력된 json key, 유효하지 않은 value 등
* '401':
* description: 태그 기록을 조회할 권한이 없는 사용자
* '500':
* description: db 에러
*/
.get('/manage/:superTagId/sub', authValidate(roleSet.librarian), searchSubTags);

router
/**
Expand Down