5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 02:36:21 +00:00
panel/app/services/concerns/autopublish.rb

11 lines
181 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module AutoPublishConcern
extend ActiveSupport::Concern
def auto_publish!
DeployJob.perform_later(site.id) if site.auto_publish?
end
end