Add kiosk join/leave pages, waiting room, and meeting feedback.
Deploy Ladill Meet / deploy (push) Successful in 47s
Deploy Ladill Meet / deploy (push) Successful in 47s
Redesign public join flows on the Frontdesk kiosk template, enforce host admission when waiting room is enabled, and collect star ratings after leave. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class SessionFeedback extends Model
|
||||
{
|
||||
protected $table = 'meet_session_feedback';
|
||||
|
||||
protected $fillable = [
|
||||
'session_id',
|
||||
'participant_uuid',
|
||||
'display_name',
|
||||
'user_ref',
|
||||
'rating',
|
||||
'audio_rating',
|
||||
'video_rating',
|
||||
'comment',
|
||||
];
|
||||
|
||||
public function session(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Session::class, 'session_id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user