Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
229d744
feat: :sparkles: added Payment confirmation
neves-gabriel Jun 9, 2022
e655e95
fix: :bug: fixed import bug in eslint
neves-gabriel Jun 9, 2022
031aea3
feat: hotel routes
Alan-A-Andrade Jun 9, 2022
8a7c078
refactor: :zap: improved Payment Confirmation
neves-gabriel Jun 10, 2022
218e190
Merge pull request #2 from top-drivent/feat-hotel
venyustech Jun 10, 2022
00b21d2
feat: select room
LeslyeSF Jun 11, 2022
dc9c317
Merge pull request #4 from top-drivent/feat/select-room
venyustech Jun 12, 2022
9f81644
feat: confirm change bed rental
venyustech Jun 12, 2022
33e07b1
Merge branch 'main' into feat/PaymentConfirmation
neves-gabriel Jun 13, 2022
24f3f69
Merge pull request #5 from top-drivent/feat/changeHotel
LeslyeSF Jun 13, 2022
dda85fd
Merge branch 'main' into feat/PaymentConfirmation
neves-gabriel Jun 13, 2022
457c33f
Merge pull request #6 from top-drivent/feat/PaymentConfirmation
LeslyeSF Jun 13, 2022
3138d2b
changes to db
Alan-A-Andrade Jun 16, 2022
734b2f3
feat: create seed to activities[
Alan-A-Andrade Jun 16, 2022
e9d17e6
feat: activities router
Alan-A-Andrade Jun 16, 2022
0e885e3
refactor: seed typescript errors
venyustech Jun 17, 2022
ba553fa
fix: seed typescript errors
venyustech Jun 17, 2022
00d5c81
Merge pull request #7 from top-drivent/feat-activities
venyustech Jun 17, 2022
abafa3a
Merge pull request #8 from top-drivent/feat-activities
neves-gabriel Jun 17, 2022
d34bd0a
feat: search seats by activities ans location id
venyustech Jun 20, 2022
7d5cccd
feat: initial structure activity registation
venyustech Jun 20, 2022
1c69c4e
chore: add date and time conflict activity
venyustech Jun 21, 2022
c3f78e3
chore: activities subcriptions by enrollmentID
venyustech Jun 21, 2022
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ POSTGRES_DATABASE=drivent_test

JWT_SECRET=top_secret

DATABASE_URL=postgresql://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}?schema=public
DATABASE_URL=postgresql://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
rules: {
'import/export': 0,
'no-console': 'error',
'import/no-unresolved': 'error',
'import/order': 'off',
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dist
node_modules
.env*
!.env.example
# !.env.example
yarn.lock
.vscode
Loading