diff --git a/app/controllers/case_court_reports_controller.rb b/app/controllers/case_court_reports_controller.rb new file mode 100644 index 0000000000..d2dab81a45 --- /dev/null +++ b/app/controllers/case_court_reports_controller.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +class CaseCourtReportsController < ApplicationController + before_action :authenticate_user! + + def index + @assigned_cases = CasaCase.actively_assigned_to(current_user) + end +end diff --git a/app/views/case_court_reports/index.html.erb b/app/views/case_court_reports/index.html.erb new file mode 100644 index 0000000000..b5497a7d06 --- /dev/null +++ b/app/views/case_court_reports/index.html.erb @@ -0,0 +1,44 @@ +
+ The Court Report is pre-filled with information for your case. You can select among currently active cases assigned to you. The document is in Microsoft Word format (.docx). +
+ +