Open Issues Need Help
View All on GitHubAI Summary: This issue requests the creation of a new POST endpoint designed to refresh a user's authentication token. The endpoint will accept a user ID and a refresh token as input, and upon successful validation, it should return new access and refresh tokens. It specifies a 200 status code for success and a 400 for invalid input.
AI Summary: The task is to create a new POST API endpoint for user registration. This endpoint should accept a JSON body containing `NickName`, `Email`, and `Password` fields. Upon successful registration, it should return a `201` status code, while input validation failures should result in a `400` status code.
AI Summary: This issue requires creating a POST `/login` endpoint that allows users to authenticate using either their `Nickname` or `email` along with their `password`. Upon successful authentication, the endpoint should return an `accesToken` and `RefreshToken` with a `200` status code. If credentials are invalid, it should return a `400` status code with an appropriate error message.