mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 02:36:21 +00:00
11 lines
181 B
Ruby
11 lines
181 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
|
||
|
module AutoPublishConcern
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
def auto_publish!
|
||
|
DeployJob.perform_later(site.id) if site.auto_publish?
|
||
|
end
|
||
|
end
|