20 lines
352 B
Ruby
20 lines
352 B
Ruby
# frozen_string_literal: true
|
|
|
|
module E621
|
|
class WikiPage < ApplicationRecord
|
|
self.table_name = "e621.wiki_pages"
|
|
|
|
module SyncMethods
|
|
def sync
|
|
E621ExportDownloadJob.perform_later("wiki_pages")
|
|
end
|
|
|
|
def sync!
|
|
E621ExportDownloadJob.perform_now("wiki_pages")
|
|
end
|
|
end
|
|
|
|
extend SyncMethods
|
|
end
|
|
end
|