1
0
Fork 0
mirror of synced 2024-09-17 01:47:57 +12:00
appwrite/tests/e2e/Scopes/SideConsole.php
2023-08-23 13:12:43 -04:00

23 lines
405 B
PHP

<?php
namespace Tests\E2E\Scopes;
trait SideConsole
{
public function getHeaders(): array
{
return [
'origin' => 'http://localhost',
'cookie' => 'a_session_console='.$this->getRoot()['session'],
'x-appwrite-mode' => 'admin',
];
}
/**
* @return string
*/
public function getSide()
{
return 'console';
}
}