Merge pull request #24 from ktds-dg0501/feature/distribution
api path 수정
This commit is contained in:
commit
7711f2d527
@ -46,7 +46,10 @@ public class OpenApiConfig {
|
|||||||
.description("Development Server"),
|
.description("Development Server"),
|
||||||
new Server()
|
new Server()
|
||||||
.url("https://api.kt-event-marketing.com/distribution/v1")
|
.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
|
* Distribution Controller
|
||||||
* POST /distribution/distribute - 다중 채널 배포 실행
|
* POST api/v1/distribution/distribute - 다중 채널 배포 실행
|
||||||
* GET /distribution/{eventId}/status - 배포 상태 조회
|
* GET api/v1/distribution/{eventId}/status - 배포 상태 조회
|
||||||
*
|
*
|
||||||
* @author System Architect
|
* @author System Architect
|
||||||
* @since 2025-10-23
|
* @since 2025-10-23
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/distribution")
|
@RequestMapping("/api/v1/distribution")
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@Tag(name = "Distribution", description = "다중 채널 배포 관리 API")
|
@Tag(name = "Distribution", description = "다중 채널 배포 관리 API")
|
||||||
public class DistributionController {
|
public class DistributionController {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user