2023-10-12 21:23:10 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
|
|
module AutoPublishConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2023-10-17 18:30:37 +00:00
|
|
|
included do
|
|
|
|
def auto_publish!
|
|
|
|
DeployJob.perform_later(site.id) if site.auto_publish?
|
|
|
|
end
|
2023-10-12 21:23:10 +00:00
|
|
|
end
|
|
|
|
end
|