Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: create entry services refactoring #189

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion backend/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ app.use(passport.authenticate('session'));

// Passport config
passport.use(User.createStrategy());
// @ts-expect-error Error from mismatch between User model and Express.User types. Implemented same way as passport-local-mongoose docs suggest
passport.serializeUser(User.serializeUser());
passport.deserializeUser(User.deserializeUser());

Expand Down
3 changes: 1 addition & 2 deletions backend/src/controllers/access/access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { NextFunction, Request, Response } from 'express';
import jwt, { JwtPayload } from 'jsonwebtoken';
import ExpressError from '../../utils/ExpressError.js';
import { HydratedDocument } from 'mongoose';
import { UserType } from '../../models/user.js';
import crypto from 'crypto';
import passport from 'passport';
Expand Down Expand Up @@ -248,7 +247,7 @@ export const login = async (req: Request, res: Response, next: NextFunction) =>
type AuthenticateInfo = {
message: string;
};
passport.authenticate('local', async (err: Error, user: HydratedDocument<UserType> | null, info: AuthenticateInfo) => {
passport.authenticate('local', async (err: Error, user: UserType | null, info: AuthenticateInfo) => {
if (err) {
return next(err);
}
Expand Down
Loading