Skip to content

Commit

Permalink
Level and extent are optional
Browse files Browse the repository at this point in the history
  • Loading branch information
aorzelskiGH committed Jun 22, 2024
1 parent 3be02a4 commit 6c81fe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ public virtual IActionResult GetOperationAsyncStatusAasRepository([FromRoute] [R
[SwaggerResponse(statusCode: 500, type: typeof(Result), description: "Internal Server Error")]
[SwaggerResponse(statusCode: 0, type: typeof(Result), description: "Default error handling for unmentioned status codes")]
public virtual IActionResult GetSubmodelByIdAasRepository([FromRoute] [Required] string aasIdentifier, [FromRoute] [Required] string submodelIdentifier,
[FromQuery] [Required] LevelEnum level, [FromQuery] [Required] ExtentEnum extent)
[FromQuery] LevelEnum level, [FromQuery] ExtentEnum extent)
{
var decodedAasIdentifier = _decoderService.Decode("aasIdentifier", aasIdentifier);
var decodedSubmodelIdentifier = _decoderService.Decode("submodelIdentifier", submodelIdentifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public void InitRegistry(List<AasxCredentialsEntry> cList, DateTime timestamp, b
Console.WriteLine("GET from Registry: " + registryURL);
if (registryURL != "")
{
postRegistry.Add(registryURL);
getRegistry.Add(registryURL);
}
}
}
Expand Down

0 comments on commit 6c81fe1

Please sign in to comment.