feat(admin): public-ticket guest policy fields in settings page#34
Open
feat(admin): public-ticket guest policy fields in settings page#34
Conversation
Adds guest_policy_mode / guest_policy_user_id / guest_policy_signup_url_template to the existing Escalated settings admin page. WordPress doesn't use Inertia/Vue like the other host adapters — this ports the same capability using the plugin's native templates/admin/settings.php pattern. The sanitization pass rejects unknown mode values and clears stale fields when switching modes so the widget controller only sees settings that actually apply to the currently-selected mode.
3 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
WordPress host-adapter side of the new public-ticket guest policy feature (escalated#32). WordPress doesn't use Inertia/Vue, so instead of a dedicated sub-page this extends the existing Escalated settings admin page with three new fields.
What's added
Why inline instead of a new subpage
The shared `Admin/Settings/PublicTickets.vue` is Inertia-only — WordPress renders PHP templates. The existing `class-admin-settings.php` / `templates/admin/settings.php` pair already covers every other Escalated setting in one page, so adding three fields here is the minimal-surface way to deliver the feature.
Test plan