1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 11:14:04 +00:00

change default cookie name, add todos

This commit is contained in:
Samuel Štancl 2024-04-15 03:11:11 +02:00
parent 55b1c5387c
commit 83b1ae1aea
5 changed files with 5 additions and 4 deletions

View file

@ -159,7 +159,7 @@ test('early identification works with request data identification', function (st
$response = match ($type) {
'header' => pest()->get('/tenant-route', ['X-Tenant' => $tenantKey]),
'queryParameter' => pest()->get("/tenant-route?tenant={$tenantKey}"),
'cookie' => pest()->withUnencryptedCookie('X-Tenant', $tenantKey)
'cookie' => pest()->withUnencryptedCookie('tenant', $tenantKey)
->get('/tenant-route'),
};