Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
httpd: Change node id in `/` and add version to `/node`
Sebastian Martinez committed 2 years ago
commit 14b90ffbf91595c347376bf2f7f6a772aa19fdb5
parent 9b985426924bcc60b3ae88916bf2639c0056a9a1
2 files changed +3 -2
modified radicle-httpd/src/api/v1.rs
@@ -35,7 +35,7 @@ async fn root_handler(State(ctx): State<Context>) -> impl IntoResponse {
        "message": "Welcome!",
        "service": "radicle-httpd",
        "version": format!("{}-{}", VERSION, env!("GIT_HEAD")),
-
        "node": { "id": ctx.profile.public_key },
+
        "nid": ctx.profile.public_key,
        "path": "/api/v1",
        "links": [
            {
modified radicle-httpd/src/api/v1/node.rs
@@ -11,7 +11,7 @@ use radicle::node::{policy, Handle, DEFAULT_TIMEOUT};
use radicle::Node;

use crate::api::error::Error;
-
use crate::api::{self, Context, PoliciesQuery};
+
use crate::api::{self, Context, PoliciesQuery, VERSION};
use crate::axum_extra::{Path, Query};

pub fn router(ctx: Context) -> Router {
@@ -44,6 +44,7 @@ async fn node_handler(State(ctx): State<Context>) -> impl IntoResponse {
    };
    let response = json!({
        "id": node_id.to_string(),
+
        "version": format!("{}-{}", VERSION, env!("GIT_HEAD")),
        "config": config,
        "state": node_state,
    });