-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SIMSBIOHUB-627: Fix Manage Telemetry Page (#1452)
* Minor UI cleanup/tweaks. * Update delete survey procedure * Delete old bctw-related api code * Fix telemetry credential upload endpoint * Fix Manual telemetry create, edit, delete. * Update backend service/repo functions. Remove some duplicate code. * Add telemetry pagination/sorting. * Add placeholder when critterbase record cant be found. * Disable telemetry import button (temporarily) * chore: deprecating bctw related code * fix: dropped telemetry context provider and custom hook --------- Co-authored-by: Mac Deluca <[email protected]>
- Loading branch information
Showing
63 changed files
with
683 additions
and
1,800 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 was deleted.
Oops, something went wrong.
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,25 @@ | ||
export interface IDeploymentAdvancedFilters { | ||
/** | ||
* Filter results by system user id. | ||
* | ||
* Note: This is not the id of the user making the request. | ||
* | ||
* @type {number} | ||
* @memberof IAnimalAdvancedFilters | ||
*/ | ||
system_user_id?: number; | ||
/** | ||
* Filter results by deployment ids. | ||
* | ||
* @type {number[]} | ||
* @memberof IDeploymentAdvancedFilters | ||
*/ | ||
deployment_ids?: number[]; | ||
/** | ||
* Filter results by survey ids. | ||
* | ||
* @type {number[]} | ||
* @memberof IAnimalAdvancedFilters | ||
*/ | ||
survey_ids?: number[]; | ||
} |
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
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
Oops, something went wrong.