diff options
author | ThibG <thib@sitedethib.com> | 2019-03-17 15:34:56 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-17 15:34:56 +0100 |
commit | a20354a20b9dffada0e8d6170ebc2ff13c79baea (patch) | |
tree | 74d1a47399b0cbd24187562b1a864ae5e984979c /app/services | |
parent | 5e38ef87a7b8bac59ffa0d98464086ab8a60a2e1 (diff) |
Set and store report URIs (#10303)
Fixes #10271
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/report_service.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/report_service.rb b/app/services/report_service.rb index 1bcc1c0d5..73bd6694f 100644 --- a/app/services/report_service.rb +++ b/app/services/report_service.rb @@ -21,7 +21,8 @@ class ReportService < BaseService @report = @source_account.reports.create!( target_account: @target_account, status_ids: @status_ids, - comment: @comment + comment: @comment, + uri: @options[:uri] ) end |