Skip to content

Commit

Permalink
fix: fix file formating after running prettier package
Browse files Browse the repository at this point in the history
  • Loading branch information
Silent-Watcher committed Oct 17, 2023
1 parent 421a2f3 commit 6c2cec4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
17 changes: 8 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

## 1.0.0 (2023-10-17)


### Features

* add auth routes and their controllers: login & register ([ebcc2d2](https://github.com/Silent-Watcher/jwt-node/commit/ebcc2d21535ebdac2484e8cd0911f5ae62084786))
* add controller and define root path with its controller ([aa0b590](https://github.com/Silent-Watcher/jwt-node/commit/aa0b590178590a783a070bee935251591287f20d))
* add error handler middlewares ([0b8c024](https://github.com/Silent-Watcher/jwt-node/commit/0b8c02413f7ca4a3fdefe3c0fb573776ea54a215))
* add husky and commitizen ([a703981](https://github.com/Silent-Watcher/jwt-node/commit/a703981e915920ebb523d9ceb26554e0f209bb67))
* add mongoose and setup the mongoose config file ([4b3faf3](https://github.com/Silent-Watcher/jwt-node/commit/4b3faf3b6e3c0cb837075db48f75288b40ab398d))
* add prettier and .gitattribute file ([d18af62](https://github.com/Silent-Watcher/jwt-node/commit/d18af62b8913b29ca08cb5f1b73a9290932ee046))
* add register feature ([85656ce](https://github.com/Silent-Watcher/jwt-node/commit/85656ced9fe6148a6650dc914d7c92059e7d2f76))
* create & define user model ([781af5f](https://github.com/Silent-Watcher/jwt-node/commit/781af5f3480c46ae97b47277283fd9165b3ac96c))
- add auth routes and their controllers: login & register ([ebcc2d2](https://github.com/Silent-Watcher/jwt-node/commit/ebcc2d21535ebdac2484e8cd0911f5ae62084786))
- add controller and define root path with its controller ([aa0b590](https://github.com/Silent-Watcher/jwt-node/commit/aa0b590178590a783a070bee935251591287f20d))
- add error handler middlewares ([0b8c024](https://github.com/Silent-Watcher/jwt-node/commit/0b8c02413f7ca4a3fdefe3c0fb573776ea54a215))
- add husky and commitizen ([a703981](https://github.com/Silent-Watcher/jwt-node/commit/a703981e915920ebb523d9ceb26554e0f209bb67))
- add mongoose and setup the mongoose config file ([4b3faf3](https://github.com/Silent-Watcher/jwt-node/commit/4b3faf3b6e3c0cb837075db48f75288b40ab398d))
- add prettier and .gitattribute file ([d18af62](https://github.com/Silent-Watcher/jwt-node/commit/d18af62b8913b29ca08cb5f1b73a9290932ee046))
- add register feature ([85656ce](https://github.com/Silent-Watcher/jwt-node/commit/85656ced9fe6148a6650dc914d7c92059e7d2f76))
- create & define user model ([781af5f](https://github.com/Silent-Watcher/jwt-node/commit/781af5f3480c46ae97b47277283fd9165b3ac96c))
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# jwt-node

a express js authentication system using JWT token
2 changes: 1 addition & 1 deletion controllers/auth/register.controller.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const userModel = require('../../models/user.model');
const {hashPassword} = require('../../utils/auth.utils');
const { hashPassword } = require('../../utils/auth.utils');

const registerController = async (req, res, next) => {
try {
Expand Down

0 comments on commit 6c2cec4

Please sign in to comment.