File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class AuthRoutes extends BaseConfig
14
14
'get ' ,
15
15
'register ' ,
16
16
'RegisterController::registerView ' ,
17
+ 'register ' , // Route name
17
18
],
18
19
[
19
20
'post ' ,
@@ -26,6 +27,7 @@ class AuthRoutes extends BaseConfig
26
27
'get ' ,
27
28
'login ' ,
28
29
'LoginController::loginView ' ,
30
+ 'login ' , // Route name
29
31
],
30
32
[
31
33
'post ' ,
@@ -57,26 +59,27 @@ class AuthRoutes extends BaseConfig
57
59
'get ' ,
58
60
'logout ' ,
59
61
'LoginController::logoutAction ' ,
62
+ 'logout ' , // Route name
60
63
],
61
64
],
62
65
'auth-actions ' => [
63
66
[
64
67
'get ' ,
65
68
'auth/a/show ' ,
66
69
'ActionController::show ' ,
67
- 'auth-action-show ' ,
70
+ 'auth-action-show ' , // Route name
68
71
],
69
72
[
70
73
'post ' ,
71
74
'auth/a/handle ' ,
72
75
'ActionController::handle ' ,
73
- 'auth-action-handle ' ,
76
+ 'auth-action-handle ' , // Route name
74
77
],
75
78
[
76
79
'post ' ,
77
80
'auth/a/verify ' ,
78
81
'ActionController::verify ' ,
79
- 'auth-action-verify ' ,
82
+ 'auth-action-verify ' , // Route name
80
83
],
81
84
],
82
85
];
You can’t perform that action at this time.
0 commit comments