-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: removed unnecessary (and failing) cors proxy from isomorphic-git push calls * refactor: move all isomercms-backend code into a src subdir * refactor: consolidate routes * refactor: remove outdated auth.js * refactor: consolidate middleware * refactor: move MailClient, SmsClient, and TotpGenerator into utilServices * test: fixed accidental renaming of a Users integration test. * refactor: moves SmsClient, and TotpGenerator back to services/identity
- Loading branch information
Showing
221 changed files
with
115 additions
and
623 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
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ node_modules/ | |
build/ | ||
*.pem | ||
.env* | ||
.idea/ | ||
.idea/ | ||
.DS_Store |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
const path = require("path") | ||
|
||
module.exports = { | ||
config: path.resolve("./database", "config.js"), | ||
"models-path": path.resolve("./database", "models"), | ||
"seeders-path": path.resolve("./database", "seeders"), | ||
"migrations-path": path.resolve("./database", "migrations"), | ||
config: path.resolve("src", "database", "config.js"), | ||
"models-path": path.resolve("src", "database", "models"), | ||
"seeders-path": path.resolve("src", "database", "seeders"), | ||
"migrations-path": path.resolve("src", "database", "migrations"), | ||
} |
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
Oops, something went wrong.