Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BHBC-2145, 2087: Occurrence messaging refactoring; Submission message type for mismatched focal species #913

Merged
merged 32 commits into from
Jan 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9592f6e
BHBC-2145: Begin refactor
curtisupshall Jan 13, 2023
4a78185
BHBC-2145: Migrate survey queries to repository methods
curtisupshall Jan 16, 2023
6d714a9
BHBC-2145: Update survey repo, service and endpoints
curtisupshall Jan 16, 2023
1d8cd06
BHBC-2145: usePolling hook
curtisupshall Jan 17, 2023
2b2e683
BHBC-2145: Error messaging refactor WIP
curtisupshall Jan 17, 2023
4f2056a
BHBC-2145: WIP
curtisupshall Jan 18, 2023
b8e2ecd
Merge branch 'dev' into BHBC-2145
curtisupshall Jan 18, 2023
6c40676
BHBC-2145: Sorting function
curtisupshall Jan 19, 2023
2f9ccab
BHBC-2145: app compiling
curtisupshall Jan 19, 2023
a1bd788
BHBC-2145: Group by message type at service level
curtisupshall Jan 19, 2023
269beff
BHBC-2145: Refactor surveyobservations component to render messages g…
curtisupshall Jan 20, 2023
e512f7a
BHBC-2145: Fix bug with re XLSX -> DWCA validatoin error propogration
curtisupshall Jan 20, 2023
cb392ec
BHBC-2145: Add polling to SurveyObservation
curtisupshall Jan 21, 2023
83933a3
BHBC-2145: Make fix
curtisupshall Jan 21, 2023
cb1197a
Merge branch 'dev' into BHBC-2145
curtisupshall Jan 23, 2023
126c4e3
BHBC-2087: Create migration for new submission message type
curtisupshall Jan 23, 2023
9a36260
BHBC-2145: lint + format fixes
curtisupshall Jan 23, 2023
3b6a297
BHBC-2145: Update JSdocs
curtisupshall Jan 23, 2023
40ee7e1
BHBC-2145: Address todo comment
curtisupshall Jan 23, 2023
cbfe7df
BHBC-2145: Add submission errors for mismatched template species / su…
curtisupshall Jan 23, 2023
41f121f
BHBC-2145: Fix test compilation errors
curtisupshall Jan 23, 2023
f1d2eeb
BHBC-2145: Update repo tests
curtisupshall Jan 24, 2023
c95e731
BHBC-2145: Added service tests
curtisupshall Jan 24, 2023
ade7f30
BHBC-2145: Format fixes; PR change
curtisupshall Jan 24, 2023
3cc24ab
BHBC-2145: Tests + PR changes WIP
curtisupshall Jan 24, 2023
c0b6219
BHBC-2145: fix api tests WIP
curtisupshall Jan 25, 2023
25520c9
BHBC-2145: test WIP
curtisupshall Jan 25, 2023
20737bf
BHBC-2145: Test coverage for API request + response validation
curtisupshall Jan 25, 2023
a546281
BHBC-2145: Make fix
curtisupshall Jan 25, 2023
ae0b169
BHBC-2145: Fix upload endpoint tests
curtisupshall Jan 26, 2023
0385331
BHBC-2145: Empty commit
curtisupshall Jan 26, 2023
0009d8e
BHBC-2145: Fix JS doc
curtisupshall Jan 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion api/src/constants/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ export enum SUBMISSION_MESSAGE_TYPE {
'INVALID_MEDIA' = 'Media is invalid',
'INVALID_XLSX_CSV' = 'Media is not a valid XLSX CSV file.',
'UNSUPPORTED_FILE_TYPE' = 'File submitted is not a supported type',
'NON_UNIQUE_KEY' = 'Duplicate Key(s) found in file.'
'NON_UNIQUE_KEY' = 'Duplicate Key(s) found in file.',
'MISMATCHED_TEMPLATE_SURVEY_SPECIES' = 'Mismatched template with survey focal species'
}

export enum MESSAGE_CLASS_NAME {
Expand Down
Loading