From 4233a471fad29e36c49c02d47f6dcd98394b5b9c Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Thu, 17 Oct 2024 15:56:04 -0500 Subject: [PATCH] Added project service API (#424) * Added project service API * changed service name --- CHANGELOG.md | 3 +++ restapi/index.html | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7af1d43..62a2f249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +### Added +- API documentation for project service [#423](https://github.com/IN-CORE/incore-docs/issues/423) + ### Changed - Update docs according to support Interdependent recovery analysis [#417](https://github.com/IN-CORE/incore-docs/issues/417) diff --git a/restapi/index.html b/restapi/index.html index 59c32a08..7c503f74 100644 --- a/restapi/index.html +++ b/restapi/index.html @@ -43,7 +43,8 @@ {url: window.location.protocol + '//' + window.location.host + "/data/api/openapi.json", name: "Data"}, {url: window.location.protocol + '//' + window.location.host + "/dfr3/api/openapi.json", name: "DFR3"}, {url: window.location.protocol + '//' + window.location.host + "/semantics/api/openapi.json", name: "Semantics"}, - {url: window.location.protocol + '//' + window.location.host + "/space/api/openapi.json", name: "Space"} + {url: window.location.protocol + '//' + window.location.host + "/space/api/openapi.json", name: "Space"}, + {url: window.location.protocol + '//' + window.location.host + "/project/api/openapi.json", name: "Project"} ], dom_id: '#swagger-ui', deepLinking: true,