mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 12:06:24 +00:00
api path 수정
This commit is contained in:
parent
e7ffdcfe44
commit
edcb519800
@ -46,7 +46,10 @@ public class OpenApiConfig {
|
||||
.description("Development Server"),
|
||||
new Server()
|
||||
.url("https://api.kt-event-marketing.com/distribution/v1")
|
||||
.description("Production Server")
|
||||
.description("Production Server"),
|
||||
new Server()
|
||||
.url("http://kt-event-marketing-api.20.214.196.128.nip.io/api/v1")
|
||||
.description("VM Development Server")
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
@ -18,15 +18,15 @@ import org.springframework.web.bind.annotation.*;
|
||||
|
||||
/**
|
||||
* Distribution Controller
|
||||
* POST /distribution/distribute - 다중 채널 배포 실행
|
||||
* GET /distribution/{eventId}/status - 배포 상태 조회
|
||||
* POST api/v1/distribution/distribute - 다중 채널 배포 실행
|
||||
* GET api/v1/distribution/{eventId}/status - 배포 상태 조회
|
||||
*
|
||||
* @author System Architect
|
||||
* @since 2025-10-23
|
||||
*/
|
||||
@Slf4j
|
||||
@RestController
|
||||
@RequestMapping("/distribution")
|
||||
@RequestMapping("/api/v1/distribution")
|
||||
@RequiredArgsConstructor
|
||||
@Tag(name = "Distribution", description = "다중 채널 배포 관리 API")
|
||||
public class DistributionController {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user