Skip to content

Commit

Permalink
Merge pull request #8867 from kaltura/Orion-15.2.0-PSVAMB-6815
Browse files Browse the repository at this point in the history
PSVAMB-6815
  • Loading branch information
hilak committed Nov 5, 2019
2 parents 684e29c + 5e7f0b2 commit f46ad66
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -7,6 +7,8 @@ class ApFeedDropFolderPlugin extends KalturaPlugin implements IKalturaPlugin, IK
const PLUGIN_NAME = 'ApFeedDropFolder';

const DROP_FOLDER_PLUGIN_NAME = 'dropFolder';

const FEED_DROP_FOLDER_PLUGIN_NAME = 'FeedDropFolder';
/**
* @return array
*/
Expand Down Expand Up @@ -128,8 +130,9 @@ public static function getObjectClass($baseClass, $enumValue)
public static function dependsOn()
{
$dropFolderDependency = new KalturaDependency(self::DROP_FOLDER_PLUGIN_NAME);
$feedDropFolderDependency = new KalturaDependency(self::FEED_DROP_FOLDER_PLUGIN_NAME);

return array($dropFolderDependency);
return array($dropFolderDependency, $feedDropFolderDependency);
}

/**
Expand Down

0 comments on commit f46ad66

Please sign in to comment.