Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
14bcb70
Implement global error handling middleware
anaspxr Nov 11, 2024
a68e265
configure zod validation and standard response Class
anaspxr Nov 11, 2024
ce2e6a7
add signin and signup functionality (#2)
Muhammed-Sahad-P Nov 12, 2024
c8f400b
Add Mongoose Schemas (#3)
sinan-bh Nov 12, 2024
bfafcaf
Authentication and Authorization updates (#6)
anaspxr Nov 12, 2024
ed19585
Space CRUD functionality (#7)
Muhammed-Sahad-P Nov 12, 2024
cea7319
Admin functionality (#4)
fa-salu Nov 14, 2024
9f1993d
chat controller completed (#9)
sinan-bh Nov 14, 2024
2596a8f
search feature completed (#11)
sinan-bh Nov 14, 2024
233f522
workspace functionality (#13)
anaspxr Nov 15, 2024
9842ec0
list features (#14)
fa-salu Nov 15, 2024
85e8143
fix: fix the empty active workspace
anaspxr Nov 16, 2024
a037090
Feature/usersettings (#16)
abhijithjithu0007 Nov 16, 2024
e5388f6
Added task endpoints(#17)
abhijithjithu0007 Nov 18, 2024
7b46fd5
update responses after connecting to frontend (#18)
Muhammed-Sahad-P Nov 19, 2024
6cfb8ac
refactor: improve workspace and space creation logic
anaspxr Nov 19, 2024
ee264e0
refactor space, list and task controllers for integrating with frontend
anaspxr Nov 20, 2024
aea0399
Feature/list (#21)
fa-salu Nov 21, 2024
02f18bd
web socket completed (#22)
sinan-bh Nov 22, 2024
52f3911
user controller updated (#23)
sinan-bh Nov 22, 2024
ba44a4b
Chat feature with websocket (#25)
sinan-bh Nov 23, 2024
620fcb2
Feature/task (#26)
abhijithjithu0007 Nov 23, 2024
37a3e3a
Feature/payment integration (#24)
Muhammed-Sahad-P Nov 23, 2024
567114a
chatController updated (#27)
sinan-bh Nov 23, 2024
ad6491a
add newUser field to login resoonse
fa-salu Nov 23, 2024
f31d505
subscrtion statics add for admin dashboard
fa-salu Nov 26, 2024
e5ba877
update scripts for deployment and add dist to .gitignore
anaspxr Nov 27, 2024
2394672
refactor: conditionally log errors and messages in dev mode
anaspxr Nov 27, 2024
88e7ea1
updated search controller to only include user's worksapce
sinan-bh Nov 27, 2024
7485f88
fix socket bug (#31)
sinan-bh Nov 28, 2024
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
.env
logs
logs
dist
8 changes: 5 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"editor.defaultFormatter": "biomejs.biome",
"cSpell.words": ["signin", "Signup"],
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[dotenv]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
}
}
Loading