about summary refs log tree commit diff
path: root/app/services/report_service.rb
diff options
context:
space:
mode:
authorNaoki Kosaka <n.k@mail.yukimochi.net>2019-01-05 15:17:12 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-01-05 07:17:12 +0100
commitfae32634b15a29e66d5c2a04015f2f947cf54627 (patch)
treef551dd85c02d0769bc54f232f6085d11befd5875 /app/services/report_service.rb
parent45899cfa691b1e4f43da98c456ae8faa584eb437 (diff)
Use Contact User as Relay, Report, Subscribe. (#9661)
* Use Contact User as Relay, Report, Subscribe.

* Use Account.representative to fetch contact user.

* Use find_local.

* No reason to use Account.representative in subscribe_service.

* Don't required representative!

* Fallback is included in Account.representative method.
Diffstat (limited to 'app/services/report_service.rb')
-rw-r--r--app/services/report_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/report_service.rb b/app/services/report_service.rb
index 057d05ab9..1bcc1c0d5 100644
--- a/app/services/report_service.rb
+++ b/app/services/report_service.rb
@@ -52,6 +52,6 @@ class ReportService < BaseService
   end
 
   def some_local_account
-    @some_local_account ||= Account.local.where(suspended: false).first
+    @some_local_account ||= Account.representative
   end
 end