Skip to content

Commit fd74f22

Browse files
committed
fix: namespace path
1 parent 188fe0a commit fd74f22

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/App/Account/Identity/src/ConfigProvider.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getRoutes(): array
5959
Handler\AccessTokenHandler::class,
6060
],
6161
'allowed_methods' => ['GET'],
62-
'name' => 'api_token_refresh',
62+
'name' => 'api_identity_token_refresh',
6363
],
6464
[
6565
'path' => '/api/account/authentication[/]',
@@ -73,7 +73,7 @@ public function getRoutes(): array
7373
Handler\AuthenticationHandler::class,
7474
],
7575
'allowed_methods' => ['POST'],
76-
'name' => 'api_account_authentication',
76+
'name' => 'api_identity_authentication',
7777
],
7878
[
7979
'path' => '/api/account',
@@ -83,7 +83,7 @@ public function getRoutes(): array
8383
Handler\AccountRegisterHandler::class,
8484
],
8585
'allowed_methods' => ['POST'],
86-
'name' => 'api_account_register',
86+
'name' => 'api_identity_register',
8787
],
8888
[
8989
'path' => '/api/account/activation/[{token}[/]]',
@@ -93,7 +93,7 @@ public function getRoutes(): array
9393
Handler\AccountActivationHandler::class,
9494
],
9595
'allowed_methods' => ['POST'],
96-
'name' => 'api_account_activation',
96+
'name' => 'api_identity_activation',
9797
],
9898
[
9999
'path' => '/api/account/password/forgotten[/]',
@@ -103,7 +103,7 @@ public function getRoutes(): array
103103
Handler\AccountPasswordForgottenHandler::class,
104104
],
105105
'allowed_methods' => ['POST'],
106-
'name' => 'api_account_password_forgotten',
106+
'name' => 'api_identity_password_forgotten',
107107
],
108108
[
109109
'path' => '/api/account/password/[{token}[/]]',
@@ -113,7 +113,7 @@ public function getRoutes(): array
113113
Handler\AccountPasswordHandler::class,
114114
],
115115
'allowed_methods' => ['PATCH'],
116-
'name' => 'api_account_password_change',
116+
'name' => 'api_identity_password_change',
117117
],
118118
[
119119
'path' => '/api/account/logout[/]',
@@ -123,7 +123,7 @@ public function getRoutes(): array
123123
Handler\LogoutHandler::class,
124124
],
125125
'allowed_methods' => ['GET'],
126-
'name' => 'api_account_logout',
126+
'name' => 'api_identity_logout',
127127
],
128128
];
129129
}

0 commit comments

Comments
 (0)