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

13 lines
208 B
Ruby
Raw Normal View History

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