Skip to content

Commit

Permalink
[FEAT]/#51-트리에 속한 멤버들의 ProfileImages
Browse files Browse the repository at this point in the history
  • Loading branch information
koojun99 committed Mar 5, 2024
1 parent 3decdd2 commit 296231a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.security.SecurityRequirement;
import io.swagger.v3.oas.models.security.SecurityScheme;
import io.swagger.v3.oas.models.servers.Server;
import org.springdoc.core.models.GroupedOpenApi;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand All @@ -31,6 +32,8 @@ public OpenAPI openAPI() {
return new OpenAPI()
.components(new Components().addSecuritySchemes("bearerAuth", securityScheme))
.security(Arrays.asList(securityRequirement))
.servers(Arrays.asList(
new Server().url("https://dev.tttree.shop").description("Develop server")))
.info(new Info()
.title("Tree API")
.version("1.0.0"));
Expand Down

0 comments on commit 296231a

Please sign in to comment.