Skip to content

Commit 5537bac

Browse files
committed
removed hashed password from REST
1 parent 1ef501a commit 5537bac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

backend/user/src/services/registration/register-logic.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ import { db, users } from '@/lib/db';
55
import type { IRegisterPayload } from './register-inputs';
66

77
const _getSchema = () => {
8-
const { id, email, username, firstName, lastName, password } = getTableColumns(users);
8+
const { id, email, username, firstName, lastName } = getTableColumns(users);
99
return {
1010
id,
1111
email,
1212
username,
1313
firstName,
1414
lastName,
15-
password,
1615
};
1716
};
1817

0 commit comments

Comments
 (0)