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

✨ [Feature] Admin 댓글, 방, 노쇼 신고 리스트 조회 API #718

Closed
JaBeast opened this issue Mar 11, 2024 · 0 comments · Fixed by #719
Closed

✨ [Feature] Admin 댓글, 방, 노쇼 신고 리스트 조회 API #718

JaBeast opened this issue Mar 11, 2024 · 0 comments · Fixed by #719
Assignees
Labels
enhancement New feature or request

Comments

@JaBeast
Copy link
Contributor

JaBeast commented Mar 11, 2024

댓글 신고 리스트 조회 API

Description

  • 댓글 신고 API
  • 신고마다 FK값이 달라서 각기 다른 신고로 나눠 받아서 작성할 예정

Request

URI

/party/admin/reports/comments


Response

Status code

  • 201
[
	{
	  "id" : number,
	  "reporterIntraId" : String,
	  "commentId" : number
	  "roomId" : number,
	  "message" : Stirng,
	  "createdAt" : Date
	};
	...
]

방 신고 리스트 조회 API

Description

  • 방 신고 API
  • 신고마다 FK값이 달라서 각기 다른 신고로 나눠 받아서 작성할 예정

Request

URI

/party/admin/reports/rooms

Request body


Response

Status code

  • 201
[
	{
	  id : number,
	  reporterIntraId : string,
	  reporteeIntraId : string,
	  roomId : number,
	  message : stirng,
	  createdAt : Date
	}; 
	...
]

노쇼 신고 리스트 조회 API

Description

  • 노쇼 신고 API
  • 신고마다 FK값이 달라서 각기 다른 신고로 나눠 받아서 작성할 예정

Request

URI

/party/admin/reports/users

Request body


Response

Status code

  • 201
[
	{
	  id : number,
	  reporterIntraId : string,
	  reporteeIntraId : string,
	  roomId : number,
	  message : stirng,
	  createdAt : Date
	};
	...
]

Todo

No response

ETC

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant