Skip to content

Commit

Permalink
chore: TemplateApi response 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Aug 3, 2024
1 parent 9af838f commit dc04ed1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.layer.domain.template.controller;

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
Expand Down Expand Up @@ -58,7 +59,7 @@ public interface TemplateApi {
content = {
@Content(
mediaType = "application/json",
schema = @Schema(implementation = TemplateSimpleInfoResponse.class)
array = @ArraySchema(schema = @Schema(implementation = TemplateSimpleInfoResponse.class))
)
}
)
Expand Down

0 comments on commit dc04ed1

Please sign in to comment.