quote notifs

This commit is contained in:
2458773093
2019-08-08 16:25:28 +03:00
parent c8ce87e4f9
commit 623fa7da80
4 changed files with 52 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ class PostStatusService < BaseService
process_hashtags_service.call(@status)
process_mentions_service.call(@status)
process_quote_service.call(@status)
end
def schedule_status!
@@ -117,6 +118,10 @@ class PostStatusService < BaseService
ISO_639.find(str)&.alpha2
end
def process_quote_service
ProcessQuoteService.new
end
def process_mentions_service
ProcessMentionsService.new
end