forked from fluentcms/FluentCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fluentcms#2166 Support url slug and add parent page to page response (f…
…luentcms#2168) Co-authored-by: Amir Pournasserian <[email protected]>
- Loading branch information
1 parent
6e5f576
commit 64cabfe
Showing
8 changed files
with
332 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/Backend/FluentCMS.Web.Api/Models/Pages/PageParentDetailResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace FluentCMS.Web.Api.Models; | ||
|
||
public class PageParentDetailResponse : BaseSiteAssociatedResponse | ||
{ | ||
public PageFullDetailResponse? Parent { get; set; } | ||
public PageFullDetailResponse? Current { get; set; } | ||
public string Slug { get; set; } = string.Empty; | ||
} |
471 changes: 254 additions & 217 deletions
471
src/Frontend/FluentCMS.Web.ApiClients/GeneratedApiClients.cs
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters