-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
fix: Allow frontend editing of page title fields #8131
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
Conversation
Reviewer's Guide by SourceryThis pull request addresses issue #7689 by adding the 'title_frontend_editable_fields' property to the PageAdmin class, enabling frontend editing of page title fields. Additionally, a new test was added to verify the functionality of the page title field editing endpoint. Class diagram showing PageAdmin changesclassDiagram
class PageAdmin {
+search_fields: list
+title_frontend_editable_fields: list
+has_module_permission(request)
+move_form: MovePageForm
+inlines: list
}
note for PageAdmin "Added title_frontend_editable_fields
for frontend title editing capability"
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @fsbraun - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Let's get this merged and released 🚢 🚀
Description
This PR fixes #7689 by adding the missing class property
title_frontend_editable_fields
toPageAdmin
.Related resources
Checklist
develop-4
Summary by Sourcery
Fix the frontend editing capability for page title fields by introducing the
title_frontend_editable_fields
property inPageAdmin
and add a corresponding test to ensure the functionality works as expected.Bug Fixes:
title_frontend_editable_fields
toPageAdmin
.Tests: