Skip to content
Snippets Groups Projects
Commit 4265ff52 authored by Tobias Gross-Vogt's avatar Tobias Gross-Vogt
Browse files

dbp and symfony UserInterface now seperate

parent 5a484c33
No related branches found
No related tags found
No related merge requests found
Pipeline #196122 passed
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-core-bundle", "url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-core-bundle",
"reference": "acb0a136b6b46f239cc3b294a26875864aa16e43" "reference": "5202634f0d54809c65087d403a19dcd4924a08eb"
}, },
"require": { "require": {
"api-platform/core": "^2.6.8 <2.7.0", "api-platform/core": "^2.6.8 <2.7.0",
...@@ -297,7 +297,7 @@ ...@@ -297,7 +297,7 @@
"AGPL-3.0-or-later" "AGPL-3.0-or-later"
], ],
"description": "The core bundle of the Relay API gateway", "description": "The core bundle of the Relay API gateway",
"time": "2022-10-03T07:03:23+00:00" "time": "2022-10-04T06:30:25+00:00"
}, },
{ {
"name": "doctrine/annotations", "name": "doctrine/annotations",
......
...@@ -5,9 +5,10 @@ declare(strict_types=1); ...@@ -5,9 +5,10 @@ declare(strict_types=1);
namespace Dbp\Relay\AuthBundle\Authenticator; namespace Dbp\Relay\AuthBundle\Authenticator;
use Dbp\Relay\AuthBundle\API\AuthorizationDataProviderInterface; use Dbp\Relay\AuthBundle\API\AuthorizationDataProviderInterface;
use Dbp\Relay\CoreBundle\API\UserInterface; use Dbp\Relay\CoreBundle\API\UserInterface as DbpUserInterface;
use Symfony\Component\Security\Core\User\UserInterface as SymfonyUserInterface;
class BearerUser implements UserInterface class BearerUser implements DbpUserInterface, SymfonyUserInterface
{ {
/** @var string[] */ /** @var string[] */
private $rolesDeprecated; private $rolesDeprecated;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment