Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
corps-directory
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fhurtado14
corps-directory
Merge requests
!18
Feature/jwt backend
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/jwt backend
feature/jwt-backend
into
main
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
fhurtado14
requested to merge
feature/jwt-backend
into
main
4 months ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
2b3f7947
Prev
Next
Show latest version
1 file
+
24
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
2b3f7947
Create POSTman workaroun to be used during development.
· 2b3f7947
Federico Hurtado
authored
4 months ago
backend/config/auth/authenticateJWT.js
+
24
−
0
Options
@@ -30,6 +30,18 @@ Function to authenticate admin only functions
(create, delete, searchByName)
*/
const
authenticateAdminOnly
=
(
req
,
res
,
next
)
=>
{
// Check for bypass header - used in Postman
const
bypassToken
=
req
.
headers
[
"
x-dev-bypass
"
];
if
(
bypassToken
===
"
allow-dev-access
"
)
{
console
.
log
(
"
Bypassing authentication due to Postman bypass header.
"
);
req
.
user
=
{
role
:
"
admin
"
,
peopleId
:
1
,
};
return
next
();
}
// Get token from Authorization header
const
token
=
req
.
headers
.
authorization
?.
split
(
"
"
)[
1
];
// return early if no token provided
@@ -73,6 +85,18 @@ users themselves
(update, fullInfo)
*/
const
authenticateAdminAndPersonal
=
(
req
,
res
,
next
)
=>
{
// Check for bypass header - used in Postman
const
bypassToken
=
req
.
headers
[
"
x-dev-bypass
"
];
if
(
bypassToken
===
"
allow-dev-access
"
)
{
console
.
log
(
"
Bypassing authentication due to Postman bypass header.
"
);
req
.
user
=
{
role
:
"
admin
"
,
peopleId
:
1
,
};
return
next
();
}
// Get token from Authorization header
const
token
=
req
.
headers
.
authorization
?.
split
(
"
"
)[
1
];
Loading