Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
Factory
Resin
Server
Merge requests
!1
Feat/auth
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat/auth
feat/auth
into
dev
Overview
0
Commits
11
Pipelines
0
Changes
34
Merged
Hugo SUBTIL
requested to merge
feat/auth
into
dev
4 years ago
Overview
0
Commits
11
Pipelines
0
Changes
34
Expand
0
0
Merge request reports
Compare
dev
version 4
a0f94564
4 years ago
version 3
771bd916
4 years ago
version 2
7b1fe8a6
4 years ago
version 1
8cf88c0e
4 years ago
dev (base)
and
latest version
latest version
af44ba02
11 commits,
4 years ago
version 4
a0f94564
10 commits,
4 years ago
version 3
771bd916
9 commits,
4 years ago
version 2
7b1fe8a6
8 commits,
4 years ago
version 1
8cf88c0e
4 commits,
4 years ago
34 files
+
2849
−
390
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
34
Search (e.g. *.vue) (Ctrl+P)
src/auth/guards/jwt-auth.guard.ts
0 → 100644
+
5
−
0
Options
import
{
Injectable
}
from
'
@nestjs/common
'
;
import
{
AuthGuard
}
from
'
@nestjs/passport
'
;
@
Injectable
()
export
class
JwtAuthGuard
extends
AuthGuard
(
'
jwt
'
)
{}
Loading