Change Report category to "violation" if rule IDs are provided (#20137)

* Change Report category to "violation" if rule IDs are provided

* Fix LiteralAsCondition

* Add parentheses to conditional statement
th-downstream
trwnh 2 years ago committed by GitHub
parent 5f391239e3
commit 260ea7b222

@ -8,7 +8,7 @@ class ReportService < BaseService
@target_account = target_account
@status_ids = options.delete(:status_ids).presence || []
@comment = options.delete(:comment).presence || ''
@category = options.delete(:category).presence || 'other'
@category = options[:rule_ids].present? ? 'violation' : (options.delete(:category).presence || 'other')
@rule_ids = options.delete(:rule_ids).presence
@options = options

Loading…
Cancel
Save