fix(api): show full git commit hash in header

This commit is contained in:
spiral
2022-01-24 08:18:34 -05:00
parent c38ca2e7fa
commit af3702152f

View File

@@ -35,7 +35,7 @@ public class PrivateController: PKControllerBase
var o = new JObject();
o.Add("shards", shards.ToJson());
o.Add("stats", stats.ToJson());
o.Add("version", BuildInfoService.Version);
o.Add("version", BuildInfoService.FullVersion);
return Ok(o);
}