diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-14 05:10:28 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-14 11:10:28 +0200 |
commit | 8b74aa42176dabf77c3b4d02c80bcc47d9d70e8e (patch) | |
tree | f39b6c185db42639a6bf43ac8cb4bc621dfc2f20 /spec/fabricators | |
parent | a6807201d2003fc0d544813ba67cfe315d829e06 (diff) |
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
Diffstat (limited to 'spec/fabricators')
-rw-r--r-- | spec/fabricators/report_fabricator.rb | 2 |
1 files changed, 2 insertions, 0 deletions
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 |