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,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('meet_session_feedback', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('session_id')->constrained('meet_sessions')->cascadeOnDelete();
|
||||
$table->uuid('participant_uuid')->nullable()->index();
|
||||
$table->string('display_name')->nullable();
|
||||
$table->string('user_ref')->nullable()->index();
|
||||
$table->unsignedTinyInteger('rating');
|
||||
$table->unsignedTinyInteger('audio_rating')->nullable();
|
||||
$table->unsignedTinyInteger('video_rating')->nullable();
|
||||
$table->text('comment')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
$table->unique(['session_id', 'participant_uuid']);
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('meet_session_feedback');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user