coolify/bootstrap/helpers/api.php
2024-03-07 12:27:23 +01:00

12 lines
286 B
PHP

<?php
function get_team_id_from_token()
{
$token = auth()->user()->currentAccessToken();
return data_get($token, 'team_id');
}
function invalid_token()
{
return response()->json(['error' => 'Invalid token.', 'docs' => 'https://coolify.io/docs/api/authentication'], 400);
}