You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The monthly-report submission flow was reimplemented in ReportsController (reports#new/create/edit → app/views/reports/*). The old app/views/monthly_reports/* submission views were left behind, unrouted.
#2333 removes the orphaned monthly_reports/new.html.erb (its only unique purpose was the now-deleted liaison gate), which leaves its _form partial — and likely several sibling partials — with no renderer.
Task
Audit app/views/monthly_reports/ and remove the submission-flow views that no controller/action renders, verifying each is unrendered before deleting (grep for render, routes, and partial references — not just the filename). The live MonthlyReportsController only serves index / monthly_reports_results / show, so those and their partials stay.
Likely-orphaned candidates to confirm (superseded by app/views/reports/):
The monthly-report submission flow was reimplemented in
ReportsController(reports#new/create/edit→app/views/reports/*). The oldapp/views/monthly_reports/*submission views were left behind, unrouted.#2333 removes the orphaned
monthly_reports/new.html.erb(its only unique purpose was the now-deleted liaison gate), which leaves its_formpartial — and likely several sibling partials — with no renderer.Task
Audit
app/views/monthly_reports/and remove the submission-flow views that no controller/action renders, verifying each is unrendered before deleting (grep forrender, routes, and partial references — not just the filename). The liveMonthlyReportsControlleronly servesindex/monthly_reports_results/show, so those and their partials stay.Likely-orphaned candidates to confirm (superseded by
app/views/reports/):_form.html.erb(orphaned once Remove dead liaison monthly-report gate #2333 lands)monthly_select_type.html.erb_media_file.html.erb_report_form_field_answers.html.erb_sectorable_items.html.erb_quotable_item_quote_fields.html.erb_quote.html.erbNotes
reports/*ormonthly_reports/{index,show}view before removing.