5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 22:36:21 +00:00
panel/app/lib/concerns/auto_publish_concern.rb

13 lines
205 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module AutoPublishConcern
extend ActiveSupport::Concern
included do
def auto_publish!
2024-04-23 15:45:52 +00:00
DeployJob.perform_later(site) if site.auto_publish?
end
end
end