Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
19 Zeilen
371 B
Ruby
19 Zeilen
371 B
Ruby
class CustomWizard::Field
|
|
def self.types
|
|
@types ||= ['text', 'textarea', 'dropdown', 'image', 'radio']
|
|
end
|
|
|
|
def self.require_assets
|
|
@require_assets ||= {}
|
|
end
|
|
|
|
def self.add_assets(type, plugin = nil, asset_paths = [])
|
|
if type
|
|
types.push(*type)
|
|
end
|
|
|
|
if plugin && asset_paths
|
|
require_assets[plugin] = asset_paths
|
|
end
|
|
end
|
|
end
|