-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Hello, I encountered following problem.
I have following DTO:
struct GetStudentDTO: Content {
var id: UUID
var courseOfStudy: String
var email: String
}And following route:
student.get("me", use: getMe)
.openAPI(
summary: "[Student] Get me object",
description: "This route returns general information about the student.",
response: .type(GetStudentDTO.self),
auth: .bearer()
)But in Swagger I don't see a response type.

But if the response type is an array it does work.
student.get("me", use: getMe)
.openAPI(
summary: "[Student] Get me object",
description: "This route returns general information about the student.",
response: .type([GetStudentDTO].self),
auth: .bearer()
)Can you please help me with that?
Thanks in advance
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
