feat(fullstack): Add application form status, add submissions of forms, update DB schema
This commit is contained in:
@@ -45,11 +45,16 @@ export function useApplicationFormApi() {
|
||||
return applicationFormApiClient.deleteApplicationForm({ id })
|
||||
}
|
||||
|
||||
async function submitApplicationForm(id: string): Promise<ApplicationFormDto> {
|
||||
return applicationFormApiClient.submitApplicationForm({ id })
|
||||
}
|
||||
|
||||
return {
|
||||
createApplicationForm,
|
||||
getAllApplicationForms,
|
||||
getApplicationFormById,
|
||||
updateApplicationForm,
|
||||
deleteApplicationFormById
|
||||
deleteApplicationFormById,
|
||||
submitApplicationForm
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user