-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Content ordering should be separated based on API it is served from #10354
Comments
The refactoring work in this issue is low priority but getting the ordering correct needs to be fixed ASAP |
refs TryGhost#10354 - Adds ordering on input serialization layer for posts, pages, tags, and authors
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Not stale |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Problem
At the moment we are applying the same ordering rules for both Admin and Content API's which is not ideal. For example, we end up ordering
page
served from Content API using orderDefaultRaw , this instead could be just ordered bytitle
. For this reason, ordering of content served from Content and Admin APIs should be separated.Specification
The default order for resources returned from Content API should be:
The order of resources served in Admin API should stay as is.
Ideally this would be put on the controller level once controller separation is finished.
TODO
The text was updated successfully, but these errors were encountered: