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 /app/models | |
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 'app/models')
-rw-r--r-- | app/models/report.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/report.rb b/app/models/report.rb index fd8e46aac..54157ed8c 100644 --- a/app/models/report.rb +++ b/app/models/report.rb @@ -7,4 +7,8 @@ class Report < ApplicationRecord scope :unresolved, -> { where(action_taken: false) } scope :resolved, -> { where(action_taken: true) } + + def statuses + Status.where(id: status_ids) + end end |