Add sorting columns
This commit is contained in:
parent
adf24cbd5c
commit
90adbcfb7c
34 changed files with 833 additions and 80 deletions
|
|
@ -12,8 +12,8 @@ namespace Start.Shared.Api {
|
|||
Task<ApiResponse<BookmarkContainerDto?>> GetBookmarkContainer(int bookmarkContainerId);
|
||||
|
||||
[Post("/Create")]
|
||||
Task<ApiResponse<BookmarkContainerDto?>> CreateBookmarkContainer(
|
||||
[Body(BodySerializationMethod.Serialized)] string title);
|
||||
Task<ApiResponse<BookmarkContainerDto?>> CreateBookmarkContainer(string title,
|
||||
int sortOrder);
|
||||
|
||||
[Delete("/Delete/{bookmarkContainerId}")]
|
||||
Task<HttpResponseMessage> DeleteBookmarkContainer(int bookmarkContainerId);
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Start.Shared.Api {
|
|||
|
||||
[Post("/Create")]
|
||||
Task<ApiResponse<BookmarkGroupDto?>> CreateBookmarkGroup(string title, string color,
|
||||
int bookmarkContainerId);
|
||||
int sortOrder, int bookmarkContainerId);
|
||||
|
||||
[Delete("/Delete/{bookmarkGroupId}")]
|
||||
Task<HttpResponseMessage> DeleteBookmarkGroup(int bookmarkGroupId);
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Start.Shared.Api {
|
|||
|
||||
[Post("/Create")]
|
||||
Task<ApiResponse<BookmarkDto?>> CreateBookmark(string title, string url, string? notes,
|
||||
int bookmarkGroupId);
|
||||
int sortOrder, int bookmarkGroupId);
|
||||
|
||||
[Delete("/Delete/{bookmarkId}")]
|
||||
Task<HttpResponseMessage> DeleteBookmark(int bookmarkId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue