Skip to content

Commit

Permalink
update endpoint for tenant add default properties
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinovpankaj committed Feb 21, 2024
1 parent e231bd3 commit 986dd6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion routes/tenants-endpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ try{
"endDate":endDate,
"allowedDiskSpace":allowedDiskSpace===undefined?10:allowedDiskSpace,
"allowedUsersCount": allowedUsersCount===undefined?5:allowedUsersCount,
"expenses": expenses===undefined?1000:expenses,
"expenses": expenses===undefined?0:expenses,
"isActive":true,
"isDeleted":false,
"usedDiskSpace":0,
"reportCount":0,
"imageCount":0,
"companyIdentifier":`${name.toLowerCase()}.ondeckinspectors.com`
}

Expand Down

0 comments on commit 986dd6f

Please sign in to comment.