-
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.
Merge pull request #51 from LRZ-BADW/project-endpoint
Add Rudimentary Project Endpoint to API
- Loading branch information
Showing
21 changed files
with
1,119 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
1 | ||
= | ||
MariaDB | ||
OpenStack | ||
ProjectDetailed | ||
Rc | ||
TODO | ||
UUIDv4 | ||
Url | ||
UserDetailed | ||
enum | ||
http | ||
is_none | ||
map_err | ||
query_as | ||
serde | ||
skip_serializing_if | ||
structs | ||
thiserror | ||
url |
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
54 changes: 54 additions & 0 deletions
54
.sqlx/query-1a4aad546ee0b705a3c88df7d334b63987f0a3503768fb2335eb292db538565a.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
54 changes: 54 additions & 0 deletions
54
.sqlx/query-213702bca8fcd86b6a64014ebf93a44aa395fce0dc424b23716033c04d225da2.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
.sqlx/query-35a67307a36d1242e682f5f67d58c1375234c86a1d8ba9cb99e7698d9b0e1e52.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
.sqlx/query-62719717fcf0c7c6a6e151353d011d6addb3c706d6ff91ae5ab4e5b30c971393.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
.sqlx/query-d933ab01cc2126759f754fd732d5dcd4e94b157e9381189b69d4a92bbd721d39.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
mod health_check; | ||
mod hello; | ||
pub mod user; | ||
|
||
pub use health_check::*; | ||
pub use hello::*; | ||
pub use user::*; |
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,9 @@ | ||
use actix_web::web::scope; | ||
use actix_web::Scope; | ||
|
||
mod project; | ||
use project::projects_scope; | ||
|
||
pub fn user_scope() -> Scope { | ||
scope("/user").service(projects_scope()) | ||
} |
Oops, something went wrong.