Class: FaqCounterJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/faq_counter_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(faq: '') ⇒ Object



4
5
6
# File 'app/jobs/faq_counter_job.rb', line 4

def perform(faq: '')
  faq.update(counter: faq.counter + 1) if faq.present?
end