-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure backend project and add authentication with passport lib
- Loading branch information
0 parents
commit 6219647
Showing
18 changed files
with
3,475 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist/ | ||
node_modules | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import User from "./src/database/models/User"; | ||
import session from 'express-session'; | ||
|
||
declare module 'express-session' { | ||
export interface SessionData { | ||
passport: { | ||
user: string, | ||
} | ||
} | ||
} | ||
|
||
interface AuthenticatedRequest extends Request { | ||
user?: User; | ||
isAuthenticated: () => boolean; | ||
role: string; | ||
} |
Oops, something went wrong.