mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 01:32:06 +10:00
feat: template recipients on blur
This commit is contained in:
@ -12,6 +12,7 @@ import {
|
||||
ZAddTemplateSignersMutationSchema,
|
||||
ZCompleteDocumentWithTokenMutationSchema,
|
||||
ZRemoveSignerMutationSchema,
|
||||
ZRemoveTemplateSignerMutationSchema,
|
||||
} from './schema';
|
||||
|
||||
export const recipientRouter = router({
|
||||
@ -72,6 +73,12 @@ export const recipientRouter = router({
|
||||
}
|
||||
}),
|
||||
|
||||
removeTemplateSigner: authenticatedProcedure
|
||||
.input(ZRemoveTemplateSignerMutationSchema)
|
||||
.mutation(async ({ input, ctx }) => {
|
||||
// TODO: Implement
|
||||
}),
|
||||
|
||||
removeSigner: authenticatedProcedure
|
||||
.input(ZRemoveSignerMutationSchema)
|
||||
.mutation(async ({ input, ctx }) => {
|
||||
|
||||
Reference in New Issue
Block a user