Commit 9b9f27de authored by Sylvain Renault's avatar Sylvain Renault
Browse files

Merge branch 'main' into 'develop'

Fixed issue missing some modules by using new generator version (7.6.0) in the...

See merge request !11
parents c394f236 ca42e4d9
Loading
Loading
Loading
Loading

openapi @ 073fd721

Original line number Diff line number Diff line
Subproject commit 61f9f881fd6e4df80767f35107ae36750b307395
Subproject commit 073fd7213fd9e6ebc2f8a47d628a650de30c8bc4
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
  "spaces": 2,
  "generator-cli": {
    "version": "5.3.0",
    "version": "7.6.0",
    "generators":{
      "v1.1": {
     "generatorName": "aspnetcore",
+5 −5
Original line number Diff line number Diff line
/*
 * SmartSite Core System API
 * ETSI ARF Core System API
 *
 * API ensuring interoperability between the various services, tools and apps in SmartSite
 * API ensuring interoperability between the various services, tools and apps in ARF
 *
 * The version of the OpenAPI document: 1.0.2
 * The version of the OpenAPI document: 2.0.1
 * 
 * Generated by: https://openapi-generator.tech
 */
@@ -39,13 +39,13 @@ namespace ETSI.ARF.OpenAPI.WorldStorage.Controllers

        public override IActionResult GetAdmin()
        {
            string answer = "ETSI ARF Server Running.";
            string answer = "ETSI ARF World Storage Server is running.";
            return new ObjectResult(answer);
        }

        public override IActionResult GetVersion()
        {
            string answer = "ETSI ARF RESTful API 1.1.0";
            string answer = "ETSI ARF RESTful API v" + Startup.apiVersion;//"2.0.1";
            return new ObjectResult(answer);
        }

+2 −2
Original line number Diff line number Diff line
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
// Copyright 2024 ETSI
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
// Last change: June 2024
//

/*
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
// Last change: June 2024
//

/*
Loading