Upgrade to .NET 6 and update all dependencies
This commit is contained in:
parent
2356fbab4f
commit
28747dfe5b
17 changed files with 698 additions and 58 deletions
|
|
@ -64,7 +64,7 @@ namespace Start.Server.Controllers {
|
|||
|
||||
return Created(
|
||||
Url.Action(nameof(this.GetBookmarkContainer),
|
||||
new { bookmarkContainerId = container.BookmarkContainerId }),
|
||||
new { bookmarkContainerId = container.BookmarkContainerId })!,
|
||||
container);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ namespace Start.Server.Controllers {
|
|||
|
||||
return Created(
|
||||
Url.Action(nameof(GetBookmarkGroup),
|
||||
new { bookmarkGroupId = newGroup.BookmarkGroupId }),
|
||||
new { bookmarkGroupId = newGroup.BookmarkGroupId })!,
|
||||
newGroup.MapToDto());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ namespace Start.Server.Controllers {
|
|||
return BadRequest();
|
||||
|
||||
return Created(
|
||||
Url.Action(nameof(this.GetBookmark),new { bookmarkId = bookmark.BookmarkId }),
|
||||
Url.Action(nameof(this.GetBookmark),new { bookmarkId = bookmark.BookmarkId })!,
|
||||
bookmark);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue