Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
孙龙
/
note-library
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a5fd8743
authored
Feb 20, 2023
by
孙龙
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
跨域
parent
f21d71d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
app/Http/Kernel.php
app/Http/routes.php
app/Http/Kernel.php
View file @
a5fd8743
...
...
@@ -48,5 +48,7 @@ class Kernel extends HttpKernel
'auth.basic'
=>
\Illuminate\Auth\Middleware\AuthenticateWithBasicAuth
::
class
,
'guest'
=>
\App\Http\Middleware\RedirectIfAuthenticated
::
class
,
'throttle'
=>
\Illuminate\Routing\Middleware\ThrottleRequests
::
class
,
'cors'
=>
\App\Http\Middleware\CrossHttp
::
class
,
];
}
app/Http/routes.php
View file @
a5fd8743
...
...
@@ -28,8 +28,9 @@ Route::pattern('roleId', '[0-9]+');
|
*/
Route
::
get
(
'/api/get_user_labels'
,
'ApiController@getUserLabels'
);
Route
::
group
([
'middleware'
=>
'cors'
],
function
()
{
Route
::
get
(
'/api/get_user_labels'
,
'ApiController@getUserLabels'
);
});
Route
::
group
([
'middleware'
=>
'web'
],
function
()
{
Route
::
get
(
'/'
,
'WebController@index'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment