public function NodeMeeting::update in BigBlueButton 8
Update meeting.
Parameters
\Drupal\node\NodeInterface $node:
array $params:
1 call to NodeMeeting::update()
- NodeMeeting::store in modules/
bbb_node/ src/ Service/ NodeMeeting.php - Store meeting.
File
- modules/
bbb_node/ src/ Service/ NodeMeeting.php, line 190
Class
- NodeMeeting
- Class NodeMeeting.
Namespace
Drupal\bbb_node\ServiceCode
public function update(NodeInterface $node, CreateMeetingParameters $params = NULL) {
// This is a new record if params is empty.
$params = $this
->init($node, $params);
return $this->meetingApi
->update($node
->uuid(), $params);
}