You are here

public function NodeMeeting::create in BigBlueButton 8

Create meeting.

File

modules/bbb_node/src/Service/NodeMeeting.php, line 199

Class

NodeMeeting
Class NodeMeeting.

Namespace

Drupal\bbb_node\Service

Code

public function create(NodeInterface $node, CreateMeetingParameters $params) {
  $this
    ->init($node, $params);
  return $this->meetingApi
    ->create($node
    ->uuid(), $params);
}