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

20 lines
619 B
Ruby
Raw Normal View History

2020-01-27 17:10:29 +01:00
# frozen_string_literal: true
# Admin defined assets (like PDF or images uploaded)
2020-03-25 10:16:47 +01:00
class CustomAsset < ApplicationRecord
2016-03-23 18:39:41 +01:00
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
2016-03-23 18:39:41 +01:00
def self.get_url(name)
asset = CustomAsset.find_by(name: name)
asset&.custom_asset_file&.attachment_url
2016-03-23 18:39:41 +01:00
end
after_update :update_stylesheet if :saved_change_to_viewable?
def update_stylesheet
2020-01-27 17:10:29 +01:00
Stylesheet.theme.rebuild! if %w[profile-image-file].include? name
end
2016-03-23 18:39:41 +01:00
end