You are here

public function Meeting::create in BigBlueButton 8

Create meeting.

Overrides MeetingInterface::create

File

src/Service/Meeting.php, line 176

Class

Meeting
Class Meeting.

Namespace

Drupal\bbb\Service

Code

public function create($key, CreateMeetingParameters $params) {
  if ($data = $this->api
    ->createMeeting($params)) {
    return $data;
  }
  return FALSE;
}