MacsiDigital / laravel-zoom

Laravel Zoom Package
MIT License
261 stars 135 forks source link

Webinar Registrants Approval/Denial #86

Closed Nievac closed 3 years ago

Nievac commented 3 years ago

Is there a way using the package to approve or deny a registrant?

colinhall17 commented 3 years ago

Hi @Nievac

Thanks for reaching out, there are 3 functions on the meeting and webinar registrant models

public function approve()
{
    return $this->updateAction('approve');
}

public function deny()
{
    return $this->updateAction('deny');
}

public function cancel()
{
    return $this->updateAction('cancel');
}
Nievac commented 3 years ago

Thanks.