91dd10ec9b
fix: add symmetric encryption to document passwords
2024-01-17 17:28:28 +11:00
a94b829ee0
fix: tidy code
2024-01-17 17:17:08 +11:00
68953d1253
feat add documentPassword to documenet meta and improve the ux
...
Signed-off-by: harkiratsm <multaniharry714@gmail.com >
2024-01-12 20:54:59 +05:30
eeb6a072aa
Merge branch 'main' into harkirat/Protect
2024-01-10 10:45:19 +05:30
6be119ac95
fix: improve document meta logic
2024-01-03 20:10:50 +11:00
5660b99df7
chore: fix package vulnerabilities
...
Signed-off-by: Adithya Krishna <adi@documenso.com >
2024-01-03 13:23:13 +05:30
d8cbe1d5ba
Merge branch 'main' into harkirat/Protect
2024-01-03 11:34:42 +05:30
d731532fbf
chore: hide empty accordion for documents without date field
2024-01-02 04:58:35 +00:00
53c570151f
fix lint, description of dialog
...
Signed-off-by: harkiratsm <multaniharry714@gmail.com >
2023-12-29 22:11:44 +05:30
72a7dc6c05
fix the console error
...
Signed-off-by: harkiratsm <multaniharry714@gmail.com >
2023-12-29 17:26:33 +05:30
8f5634268d
feat: add templates to command menu ( #786 )
2023-12-29 15:16:26 +11:00
918c6f19f2
fix: fixed the title box overlapping issue ( #785 )
...
The issue is fixed. Now the box is no more overlapping
<img width="305" alt="Screenshot 2023-12-26 at 10 20 32 AM"
src="https://github.com/documenso/documenso/assets/77022877/bd17ed92-7bb0-4f3a-b0f6-173e5f6b5029 ">
2023-12-28 11:36:46 +02:00
3f89f8725b
fix: resolve conflicting z-index values ( #788 )
...
## Description
Currently there are various z-index values that are causing:
- Toasts to be placed behind dialog blur background
- Menu being cropped off by header
## Changes Made
- Revert `z-[1000]` back to `z-50` for the header (not exactly sure why
it was bumped)
- Refactor z-indexes over 9000 to start from 1000
- Ensure z-index of toast is higher than dialog
2023-12-28 20:08:19 +11:00
c4800f74b9
feat: update disabled dropzone text ( #787 )
...
Update the dropzone so it will display the relevant disabled text based
on the reason it is disabled.
2023-12-28 20:07:29 +11:00
d8eff192fe
fix: update date format and add missing default
2023-12-27 14:05:50 +11:00
eb84d7ff3c
fix: remove invalid migration
2023-12-27 14:05:49 +11:00
32633f96d2
feat: dateformat and timezone customization ( #506 )
2023-12-27 14:05:49 +11:00
27b7e29be7
feat: added undo button while drawing signature ( #480 )
2023-12-27 14:05:49 +11:00
5a11de1db9
feat: disable upload document animation for unverified users ( #749 )
2023-12-27 13:54:46 +11:00
f7cf33c61b
fix: Layout issue in the singleplayer mode ( #759 )
...
Fixes #744
2023-12-26 14:08:05 +11:00
5a32b5cafd
fix: added constants for theme variables ( #777 )
...
fixes : #776
2023-12-26 10:49:27 +11:00
8d1b960aa8
feat: add templates to command menu
2023-12-25 23:16:56 +00:00
2ae9e29903
feat: improve the ux for password protected documents
...
Signed-off-by: harkiratsm <multaniharry714@gmail.com >
2023-12-22 17:24:05 +05:30
495cd35f7c
refactor: forms ( #697 )
...
Updates our older forms to use the appropriate components bringing them in-line with the rest of our codebase.
2023-12-22 14:36:00 +11:00
1aa0fc3101
fix: remove loadingText prop
2023-12-22 01:46:41 +00:00
972c20f906
chore: tidy migrations
2023-12-21 21:20:37 +11:00
7babd82470
fix: updates from review
2023-12-21 20:42:45 +11:00
298396c86c
fix: awaiting in promise.all array
2023-12-21 17:36:35 +11:00
268a5c6508
fix: swap server-actions for trpc mutations
2023-12-21 17:01:12 +11:00
c40c9b20ec
Merge branch 'main' into feat/document-templates
2023-12-21 14:25:22 +11:00
006a559026
Merge branch 'main' into refactor-forms
2023-12-16 13:26:33 +11:00
089ba1c30e
Merge branch 'main' into fix/css-stacking-notification
2023-12-16 00:35:38 +05:30
cbcd893cfd
fixed z-index
2023-12-16 00:30:52 +05:30
82da337a56
fix: remove templateToken
2023-12-15 22:07:27 +11:00
6e10947d00
Merge branch 'main' into feat/732-toggle-signup-form
2023-12-15 21:05:21 +11:00
682cb37786
fix: update auth-options
2023-12-15 20:41:54 +11:00
1eeb5fb103
fix: tidy code and base on main
2023-12-14 15:28:27 +11:00
88534fa1c6
feat: add multi subscription support ( #734 )
...
## Description
Previously we assumed that there can only be 1 subscription per user.
However, that will soon no longer the case with the introduction of the
Teams subscription.
This PR will apply the required migrations to support multiple
subscriptions.
## Changes Made
- Updated the Prisma schema to allow for multiple `Subscriptions` per
`User`
- Added a Stripe `customerId` field to the `User` model
- Updated relevant billing sections to support multiple subscriptions
## Testing Performed
- Tested running the Prisma migration on a demo database created on the
main branch
Will require a lot of additional testing.
## Checklist
- [ ] I have tested these changes locally and they work as expected.
- [ ] I have added/updated tests that prove the effectiveness of these
changes.
- [X] I have followed the project's coding style guidelines.
## Additional Notes
Added the following custom SQL statement to the migration:
> DELETE FROM "Subscription" WHERE "planId" IS NULL OR "priceId" IS
NULL;
Prior to deployment this will require changes to Stripe products:
- Adding `type` meta attribute
---------
Co-authored-by: Lucas Smith <me@lucasjamessmith.me >
2023-12-14 15:22:54 +11:00
31a9127c9e
feat: templates
2023-12-14 12:24:56 +11:00
49736d2587
Merge branch 'documenso:main' into feat/732-toggle-signup-form
2023-12-09 11:55:55 +05:30
ee5ce78c82
chore: remove unused code
2023-12-09 11:48:46 +05:30
78a1ee2af0
feat: disable oauth signup when DISABLE_SIGNUP is true
2023-12-09 11:35:45 +05:30
323380d757
feat: env variable to disable signing up
2023-12-09 10:37:16 +05:30
bc38009392
Merge branch 'main' into refactor-forms
2023-12-08 16:31:13 +11:00
935601ad16
fix(ee): add handling for incomplete expired checkouts
2023-12-07 18:46:57 +11:00
c313da5028
fix: update seal event
2023-12-07 16:29:20 +11:00
5b98bac53b
Merge branch 'main' into feat/enhance-posthog-tracking
2023-12-07 16:28:15 +11:00
cd6184406d
chore: add e2e test for stepper
2023-12-07 15:08:16 +11:00
1a34f9fa7a
fix: import updates and api route body sizes
2023-12-07 15:08:00 +11:00
3ff7b188d7
fix(ui): tidy stepper code
2023-12-07 15:06:49 +11:00