-
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-591: Show all user's data on Project page & add search fun…
…ctionality (#1296) - Added new summary page and components. - Added/update project/survey/observations/animals/telemetry GET all endpoints, which support filter parameters and pagination.
- Loading branch information
1 parent
9113f6a
commit 5e245cf
Showing
154 changed files
with
7,826 additions
and
2,231 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface IAnimalAdvancedFilters { | ||
keyword?: string; | ||
itis_tsns?: number[]; | ||
itis_tsn?: number; | ||
system_user_id?: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export interface IObservationAdvancedFilters { | ||
keyword?: string; | ||
itis_tsns?: number[]; | ||
itis_tsn?: number; | ||
start_date?: string; | ||
end_date?: string; | ||
start_time?: string; | ||
end_time?: string; | ||
min_count?: number; | ||
system_user_id?: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface ITelemetryAdvancedFilters { | ||
keyword?: string; | ||
itis_tsns?: number[]; | ||
itis_tsn?: number; | ||
system_user_id?: number; | ||
} |
Oops, something went wrong.