Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. if media.type == 'Song'
  2. Resque.enqueue(EncodeSong, pending_media.id, pending_media.unencoded_url)
  3. elsif media.type == 'Video'
  4. Resque.enqueue(EncodeVideo, pending_media.id, pending_media.unencoded_url)
  5. elsif media.type == 'Photo'
  6. Resque.enqueue(EncodePhoto, pending_media.id, pending_media.unencoded_url)
  7. end
Add Comment
Please, Sign In to add comment