-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(backend and login): started file upload logic [2024-10-25] * refactor(UI): small refactors to comments and variables [2024-10-25] * feat: add login page [2024-10-26] * feat: handle login http call [2024-10-26] * style(Login Page): Seperated out login page logic and added in 3 grid to page background [2024-10-26] * fix!(Backend): Attempts to fix Backend and make upload_layer endpoint work - 2 type errros left to fix [2024-10-26] BREAKING CHANGE: Attempts to fix Backend and make upload_layer endpoint work - 2 type errros left to fix * fix!(rust backend): Further attempts to fix rust backend for upload layer [2024-10-27] BREAKING CHANGE: Further attempts to fix rust backend for upload layer * fix!(rust backend): Another fix on backend - fixing references and ownership when creating / uploading a layer to Dynamo and Postgis [2024-10-27] BREAKING CHANGE: Another fix on backend - fixing references and ownership when creating / uploading a layer to Dynamo and Postgis * fix: update upload layer payload [2024-10-27] --------- Co-authored-by: Chris Carlon <[email protected]>
- Loading branch information
1 parent
8799970
commit 7e7dbf2
Showing
28 changed files
with
1,076 additions
and
339 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
pub mod common; | ||
pub mod connector; | ||
pub mod layer; | ||
pub mod session; | ||
pub mod user; | ||
pub mod workspace; | ||
|
||
pub use common::*; | ||
pub use connector::*; | ||
pub use layer::*; | ||
pub use session::*; | ||
pub use user::*; | ||
pub use workspace::*; |
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
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.