forked from Code-4-Community/scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sign in error handling * error handling for auth/verify endpoint * adding awaits to asunc functions * Update UserInterceptor to create new user in database on first sign in * update default database name * update app and application table * include reviews relation in application queries * Refactor review modal and Application Table * refactor types * add Reviews view
- Loading branch information
Showing
8 changed files
with
262 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
export const applicationColumns = [ | ||
{ | ||
field: 'firstName', | ||
headerName: 'First Name', | ||
width: 150, | ||
}, | ||
{ | ||
field: 'lastName', | ||
headerName: 'Last Name', | ||
width: 150, | ||
}, | ||
{ | ||
field: 'stage', | ||
headerName: 'Stage', | ||
width: 125, | ||
}, | ||
{ | ||
field: 'step', | ||
headerName: 'Status', | ||
width: 125, | ||
}, | ||
{ | ||
field: 'position', | ||
headerName: 'Position', | ||
width: 150, | ||
}, | ||
{ | ||
field: 'createdAt', | ||
headerName: 'Date', | ||
width: 150, | ||
}, | ||
{ | ||
field: 'meanRatingAllStages', | ||
headerName: 'Rating All Stages', | ||
width: 150, | ||
}, | ||
{ | ||
field: 'meanRatingSingleStages', | ||
headerName: 'Rating Single Stage', | ||
width: 150, | ||
}, | ||
]; |
Oops, something went wrong.