mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:16:22 +00:00
12 lines
205 B
Ruby
12 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
|
|
module AutoPublishConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
def auto_publish!
|
|
DeployJob.perform_later(site) if site.auto_publish?
|
|
end
|
|
end
|
|
end
|