TenantAtlas/app/Services/Directory/EntraGroupSelection.php
2026-01-11 22:02:06 +01:00

21 lines
404 B
PHP

<?php
namespace App\Services\Directory;
use Illuminate\Support\CarbonImmutable;
class EntraGroupSelection
{
public const KEY_ALL_GROUPS_V1 = 'groups-v1:all';
public static function allGroupsV1(): string
{
return self::KEY_ALL_GROUPS_V1;
}
public static function scheduledSlotKey(CarbonImmutable $nowUtc): string
{
return $nowUtc->format('YmdHi').'Z';
}
}