Initial work on automatic ingest for imported podcasts

This commit is contained in:
Duncan Sommerville 2015-10-15 14:44:17 -04:00
parent a2d725f2b9
commit bddc121c2d
7 changed files with 157 additions and 20 deletions

View file

@ -1502,4 +1502,12 @@ class Application_Model_Preference
{
self::setValue("whats_new_dialog_viewed", $value, true);
}
public static function getPodcastPollLock() {
return self::getValue("podcast_poll_lock");
}
public static function setPodcastPollLock($value) {
self::setValue("podcast_poll_lock", $value);
}
}