Skip to content

Commit

Permalink
[Fix] 14 Add Catalog Metadata Returns No Error
Browse files Browse the repository at this point in the history
- changed return type of SetMetadataAsync from Task to Task<ActionResult<object>>
  • Loading branch information
Timo Schauties authored and Vincent Wilms committed Nov 14, 2024
1 parent 1228a82 commit 833334b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nexus/API/v1/CatalogsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ public Task<ActionResult<CatalogMetadata>>
/// <param name="metadata">The catalog metadata to set.</param>
/// <param name="cancellationToken">A token to cancel the current operation.</param>
[HttpPut("{catalogId}/metadata")]
public Task
public Task<ActionResult<object>>
SetMetadataAsync(
string catalogId,
[FromBody] CatalogMetadata metadata,
Expand Down

0 comments on commit 833334b

Please sign in to comment.