modified radicle-httpd/src/api.rs
@@ -16,7 +16,7 @@ use tower_http::cors::{self, CorsLayer};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -52,7 +52,7 @@ impl Context {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -196,7 +196,7 @@ mod project {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -211,13 +211,13 @@ mod project {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/api/v1/node.rs
@@ -6,7 +6,7 @@ use axum_auth::AuthBearer;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -74,7 +74,7 @@ async fn node_policies_repos_handler(State(ctx): State<Context>) -> impl IntoRes
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -96,7 +96,7 @@ async fn node_policies_seed_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/api/v1/projects.rs
@@ -15,7 +15,7 @@ use serde_json::json;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -141,7 +141,7 @@ async fn project_root_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -161,7 +161,7 @@ pub struct CommitsQueryString {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -242,7 +242,7 @@ async fn history_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -308,7 +308,7 @@ async fn commit_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -375,7 +375,7 @@ async fn diff_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -402,7 +402,7 @@ async fn activity_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -411,7 +411,7 @@ async fn tree_handler_root(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -436,7 +436,10 @@ async fn tree_handler(
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -478,7 +481,7 @@ async fn remotes_handler(State(ctx): State<Context>, Path(project): Path<Id>) ->
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -506,7 +509,7 @@ async fn remote_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -520,7 +523,7 @@ async fn blob_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -551,7 +554,7 @@ async fn readme_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -599,7 +602,7 @@ pub struct IssueCreate {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -641,7 +644,7 @@ async fn issue_create_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -696,7 +699,7 @@ async fn issue_update_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -722,7 +725,7 @@ pub struct PatchCreate {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -761,7 +764,7 @@ async fn patch_create_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -901,7 +904,7 @@ async fn patch_update_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -938,7 +941,7 @@ async fn patches_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/cache.rs
@@ -4,12 +4,12 @@ use std::sync::Arc;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/git.rs
@@ -16,19 +16,19 @@ use axum::Router;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -38,7 +38,7 @@ async fn git_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -70,7 +70,7 @@ async fn git_http_backend(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -210,7 +210,7 @@ mod routes {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -232,7 +232,7 @@ mod routes {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/lib.rs
@@ -21,7 +21,7 @@ use tokio::net::TcpListener;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -40,7 +40,7 @@ pub const DEFAULT_CACHE_SIZE: NonZeroUsize = unsafe { NonZeroUsize::new_unchecke
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/main.rs
@@ -1,7 +1,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -39,7 +39,7 @@ fn parse_options() -> Result<httpd::Options, lexopt::Error> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified radicle-httpd/src/raw.rs
@@ -9,7 +9,7 @@ use axum::Router;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -107,7 +107,7 @@ pub fn router(profile: Arc<Profile>) -> Router {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -134,7 +134,7 @@ async fn file_by_path_handler(
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|