1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/custom_asset.rb
2020-03-25 12:35:09 +01:00

20 lines
619 B
Ruby

# frozen_string_literal: true
# Admin defined assets (like PDF or images uploaded)
class CustomAsset < ApplicationRecord
has_one :custom_asset_file, as: :viewable, dependent: :destroy
accepts_nested_attributes_for :custom_asset_file, allow_destroy: true
# static method to retrieve the attachment URL of the custom asset
def self.get_url(name)
asset = CustomAsset.find_by(name: name)
asset&.custom_asset_file&.attachment_url
end
after_update :update_stylesheet if :saved_change_to_viewable?
def update_stylesheet
Stylesheet.theme.rebuild! if %w[profile-image-file].include? name
end
end