Sha256: 1489f3203279172cefa3ab40b611c97700970d480faffd8fe06188a76d967b69

Contents?: true

Size: 321 Bytes

Versions: 62

Compression:

Stored size: 321 Bytes

Contents

module Workarea
  class Content
    module AssetLookup
      def find_asset_id_by_file_name(file_name)
        proc do
          (
            Workarea::Content::Asset.where(file_name: file_name).first ||
            Workarea::Content::Asset.image_placeholder
          ).try(:id)
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 app/models/workarea/content/asset_lookup.rb
workarea-core-3.4.12 app/models/workarea/content/asset_lookup.rb