Now there are user defined channels

This commit is contained in:
Michael 2023-10-05 19:10:20 +00:00
parent bc3bdf3cb0
commit ed24d06e0c
12 changed files with 132 additions and 49 deletions

View file

@ -571,6 +571,14 @@ abstract class DI
return self::$dice->create(Content\Conversation\Factory\Channel::class);
}
/**
* @return Content\Conversation\Factory\UserDefinedChannel
*/
public static function UserDefinedChannelFactory()
{
return self::$dice->create(Content\Conversation\Factory\UserDefinedChannel::class);
}
/**
* @return Content\Conversation\Factory\Network
*/