All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #322 | Page horaire | ## Description de la PR [#322] Page horaire ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #4 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
33 lines
714 B
PHP
33 lines
714 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\ApiResource;
|
|
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use ApiPlatform\Metadata\Get;
|
|
use App\Dto\WorkHours\WeeklySummaryRow;
|
|
use App\State\WorkHourWeeklySummaryProvider;
|
|
|
|
#[ApiResource(
|
|
operations: [
|
|
new Get(
|
|
uriTemplate: '/work-hours/weekly-summary',
|
|
security: "is_granted('ROLE_USER')",
|
|
provider: WorkHourWeeklySummaryProvider::class
|
|
),
|
|
],
|
|
paginationEnabled: false
|
|
)]
|
|
final class WorkHourWeeklySummary
|
|
{
|
|
public string $weekStart = '';
|
|
public string $weekEnd = '';
|
|
|
|
/** @var list<string> */
|
|
public array $days = [];
|
|
|
|
/** @var list<WeeklySummaryRow> */
|
|
public array $rows = [];
|
|
}
|