Files
Classeo/backend/src/Scolarite/Application/Query/GetEvaluationDifficulty/GetEvaluationDifficultyQuery.php
Mathias STRASSER 3575d095a1
Some checks failed
CI / Backend Tests (push) Has been cancelled
CI / Frontend Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Naming Conventions (push) Has been cancelled
CI / Build Check (push) Has been cancelled
feat: Provisionner automatiquement un nouvel établissement
Lorsqu'un super-admin crée un établissement via l'interface, le système
doit automatiquement créer la base tenant, exécuter les migrations,
créer le premier utilisateur admin et envoyer l'invitation — le tout
de manière asynchrone pour ne pas bloquer la réponse HTTP.

Ce mécanisme rend chaque établissement opérationnel dès sa création
sans intervention manuelle sur l'infrastructure.
2026-04-11 20:41:55 +02:00

15 lines
269 B
PHP

<?php
declare(strict_types=1);
namespace App\Scolarite\Application\Query\GetEvaluationDifficulty;
final readonly class GetEvaluationDifficultyQuery
{
public function __construct(
public string $teacherId,
public string $tenantId,
) {
}
}