Sha256: 1b2f3877a7c5a68dee9118031e1cf0c7a0539f0ba28f3cee1f20429350fc675a
Contents?: true
Size: 906 Bytes
Versions: 1
Compression:
Stored size: 906 Bytes
Contents
module MeducationSDK class MediaFile < Loquor::Resource self.path = "/media_files" def user @user ||= User.find(user_id) end def comments @comments ||= ItemComment.where(item_id: id, item_type: "MediaFile") end def media_type case media_type_id when 1; 'slideshow' when 2; 'video' when 3; 'podcast' when 4; 'other' when 5; 'image' when 6; 'document' when 7; 'application' end end module State def self.uploaded; 1 end def self.processing; 2 end def self.available; 3 end def self.redacted; 4 end end end class MediaFileMock < MediaFile extend Loquor::ResourceMock self.attributes = { id: 1, user_id: 1, media_type_id: 2, title: "Abdominal Ultrasound Tutorial", preview_image_url: "http://www.example.com/1.jpg" } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
meducation_sdk-0.5.0 | lib/meducation_sdk/resources/media_file.rb |