Merge pull request #24 from ktds-dg0501/feature/distribution

api path 수정
This commit is contained in:
이선민 2025-10-29 13:38:30 +09:00 committed by GitHub
commit 7711f2d527
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View File

@ -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")
));
}
}

View File

@ -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 {