From 8e5097c6639eadda780cafecae6b1b48d1705e1b Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Wed, 25 Sep 2024 11:16:51 -0500 Subject: [PATCH 1/2] Added project service API --- CHANGELOG.md | 3 +++ restapi/index.html | 1 + 2 files changed, 4 insertions(+) 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..83aac166 100644 --- a/restapi/index.html +++ b/restapi/index.html @@ -44,6 +44,7 @@ {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 + "/project/api/openapi.json", name: "Space"} ], dom_id: '#swagger-ui', deepLinking: true, From f17412abd53de4052f8a1510035710726abe10af Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Wed, 25 Sep 2024 11:34:37 -0500 Subject: [PATCH 2/2] changed service name --- restapi/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/restapi/index.html b/restapi/index.html index 83aac166..7c503f74 100644 --- a/restapi/index.html +++ b/restapi/index.html @@ -43,8 +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 + "/project/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,