Class: Carousel::Slide

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/carousel/slide.rb

Constant Summary collapse

IMAGE_MIMETYPES =
%w(gif jpeg pjpeg png svg+xml tiff).collect{|subtype| "image/#{subtype}"}

Instance Method Summary collapse

Instance Method Details

#is_image?Boolean

– Instance Methods —————————————————–

Returns:

  • (Boolean)


33
34
35
# File 'app/models/carousel/slide.rb', line 33

def is_image?
  IMAGE_MIMETYPES.include?(file_content_type)
end