chatwoot-develop/enterprise/app/jobs/portal/article_indexing_job.rb

8 lines
150 B
Ruby
Executable File

class Portal::ArticleIndexingJob < ApplicationJob
queue_as :low
def perform(article)
article.generate_and_save_article_seach_terms
end
end