mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
chore: small changes
This commit is contained in:
@ -67,7 +67,7 @@ const router = createNextRoute(contract, {
|
||||
return {
|
||||
status: 404,
|
||||
body: {
|
||||
message: 'Document not found',
|
||||
message: e.message ?? 'Document not found',
|
||||
},
|
||||
};
|
||||
}
|
||||
@ -106,7 +106,7 @@ const router = createNextRoute(contract, {
|
||||
return {
|
||||
status: 404,
|
||||
body: {
|
||||
message: 'Document not found',
|
||||
message: e.message ?? 'Document not found',
|
||||
},
|
||||
};
|
||||
}
|
||||
@ -128,7 +128,7 @@ const router = createNextRoute(contract, {
|
||||
return {
|
||||
status: 404,
|
||||
body: {
|
||||
message: 'An error has occured while uploading the file',
|
||||
message: e.message ?? 'An error has occured while uploading the file',
|
||||
},
|
||||
};
|
||||
}
|
||||
@ -219,7 +219,7 @@ const router = createNextRoute(contract, {
|
||||
return {
|
||||
status: 500,
|
||||
body: {
|
||||
message: 'An error occurred while uploading your document.',
|
||||
message: e.message ?? 'An error has occured while sending the document for signing',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
@ -51,13 +51,14 @@ export const contract = c.router(
|
||||
},
|
||||
sendDocumentForSigning: {
|
||||
method: 'PATCH',
|
||||
path: '/documents/:id/send-for-signing',
|
||||
path: '/documents/:id/send',
|
||||
body: SendDocumentForSigningMutationSchema,
|
||||
responses: {
|
||||
200: SuccessfulSigningResponseSchema,
|
||||
400: UnsuccessfulResponseSchema,
|
||||
401: UnsuccessfulResponseSchema,
|
||||
404: UnsuccessfulResponseSchema,
|
||||
500: UnsuccessfulResponseSchema,
|
||||
},
|
||||
summary: 'Send a document for signing',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user