From 8b74aa42176dabf77c3b4d02c80bcc47d9d70e8e Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Fri, 14 Apr 2017 05:10:28 -0400 Subject: Admin reports controller improvements (#1714) * Simplify admin/reports controller filtering for index * Rename parameter to resolved * Fix issue where reports view could not access filter_link_to * Add coverage for admin/reports controller * DRY up resolution of related reports for target account * Clean up admin/reports routes * Add Report#statuses method * DRY up current account action taken params * Rubocop styles --- spec/fabricators/report_fabricator.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'spec/fabricators') diff --git a/spec/fabricators/report_fabricator.rb b/spec/fabricators/report_fabricator.rb index b9fa360a7..5bd4a63f0 100644 --- a/spec/fabricators/report_fabricator.rb +++ b/spec/fabricators/report_fabricator.rb @@ -1,4 +1,6 @@ Fabricator(:report) do + account + target_account { Fabricate(:account) } comment "You nasty" action_taken false end -- cgit