cargo check: Fix identities route complaints As the route is at this time not doing anything as identities cannot be stored right now, the endpoint can ignore a lot of path elements. This fixes `cargo check` for the most part.
Dependencies
- [2]
S6TFYMRGroutes: Move pijul routes to controllers module As with the root routes, now the pijul routes are moved. The mounting of the routes is still done in main.rs though the controller module now collects them. This should DRY this code
Change contents
- replacement in src/controllers/pijul.rs at line 117
#[get("/<org_path>/<proj_path>/.pijul?<identities>", rank = 4)]fn identities(org_path: String, proj_path: String, identities: Identities) -> Json<IdentitieRes> {#[get("/<_>/<_>/.pijul?<identities>", rank = 4)]fn identities(identities: Identities) -> Json<IdentitieRes> {println!("{:?}", identities.identities);