docbrown/app/models/podcast.rb
2018-02-28 16:11:08 -05:00

33 lines
514 B
Ruby

class Podcast < ApplicationRecord
has_many :podcast_episodes
mount_uploader :image, ProfileImageUploader
mount_uploader :pattern_image, ProfileImageUploader
after_save :bust_cache
after_create :pull_all_episodes
def path
slug
end
def profile_image_url
image_url
end
def name
title
end
private
def bust_cache
CacheBuster.new.bust("/" + path)
end
def pull_all_episodes
PodcastFeed.new.get_episodes(self)
end
handle_asynchronously :pull_all_episodes
end