Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
E
exam_11_back
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zarina
exam_11_back
Commits
315813a2
Project 'zarina/exam_11_back' was moved to 'z/exam_11_back'. Please update any links and bookmarks that may still have the old path.
Commit
315813a2
authored
Jul 22, 2020
by
Алексей Анпилогов
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#4
, добавила middleware для аутентификации пользователя
parent
585aa201
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
auth.js
middleware/auth.js
+17
-0
No files found.
middleware/auth.js
View file @
315813a2
const
User
=
require
(
"../models/User"
);
const
auth
=
async
(
req
,
res
,
next
)
=>
{
const
token
=
req
.
get
(
"Token"
);
if
(
!
token
)
{
return
res
.
status
(
401
).
send
({
error
:
"Token was not presented"
});
}
const
user
=
await
User
.
findOne
({
token
});
if
(
!
user
)
{
return
res
.
status
(
401
).
send
({
error
:
"You must be logged in!"
});
}
req
.
user
=
user
;
next
();
};
module
.
exports
=
auth
;
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