Add My Consoles editing to account settings #347
Labels
No labels
automated
code-quality
component: admin dashboard
component: backend
component: billing
component: content management
component: faqs
component: game genres
component: game lists
component: game reviews
component: game search
component: games
component: internal notifications
component: platforms
component: security
component: tests
component: user api
component: user badges
component: user blogs
component: user consoles
component: user favorites
component: user friends
component: user notifications
component: user profiles
component: user site notifications
component: user wishlists
component: web design
dependencies
php
priority
high
priority
low
priority
medium
security-hotspot
source: codex
source: sonarqube
status
awaiting feedback
status
backlog
status
done
status
in progress
status
in queue
status
in review
status
needs codex review
status
needs investigation
status
wontfix
type: bug
type: documentation
type: feature
type: improvement
type: regression
type: task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
MyVideoGameList/myvideogamelist.com#347
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The public profile can show a user's "My Consoles" data, but account settings did not provide a way for the user to edit that console list.
Source: https://www.notion.so/3702f7baaae480f4b86ae4428a9470f3
Reported behavior
The Notion report says: "The info from the old website is there but no way to edit it."
Repo context
console_listsdata.App\Http\Controllers\UserControllerreadsConsoleListrows, resolves the stored platform IDs, and passes the resulting consoles tousers.profile.show./settings/profileLivewire settings page now exposes a dedicated console-list editing surface alongside profile fields, gamertags, account pictures, reviews, blog entries, password, privacy, notifications, and account deletion.App\Models\ConsoleListstores a user-ownedconsolesvalue, and production sync code already preserves old-site console list data.Acceptance criteria
console_listsdata without losing unrelated profile, gamertag, picture, privacy, notification, blog, or password settings.Test coverage
/settings/profilerenders the console editing surface for authenticated users.console_listsvalues are loaded into the settings UI.php artisan test --compact.Implemented and pushed in
974ff79(Add console list editing to settings).Notes:
Consolestab to/settings/profilewith active platform checkboxes, the five-column large-screen layout, and the final copy: "Choose the consoles and platforms you own. They will be shown on your profile."console_lists.consolesCSV format, keyed/restored byid = user_id, withnullstored for an empty list.php artisan test --compact tests/Feature/Settings/ProfileUpdateTest.php tests/Feature/UserProfileTest.phppassed with 66 tests / 543 assertions, andvendor/bin/pint --dirty --format agentwas run after PHP edits.