Skip to content

Commit

Permalink
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.3.20
### Added

## fixed
- Fixed Open api specification by adding the context root.

## 0.3.19
### Added

5 changes: 4 additions & 1 deletion backend/src/main/resources/static/aas-registry-openapi.yaml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ info:
security:
- bearerAuth: []
servers:
- url: "{protocol}://{host_name}:{port}/api/{version_prefix}"
- url: "{protocol}://{host_name}:{port}{context_root}/api/{version_prefix}/"
variables:
protocol:
description: Allows access through http and https (recommended)
@@ -56,6 +56,9 @@ servers:
default: v3.0
enum:
- v3.0
context_root:
description: Context root for the API
default: ""
paths:
/shell-descriptors:
get:

0 comments on commit 0276b00

Please sign in to comment.