Show version in UI (for admin users).

Closes #73 and #158.
This commit is contained in:
Orne Brocaar
2024-03-26 09:01:21 +00:00
parent 54b10cb693
commit f970e94cca
36 changed files with 877 additions and 54 deletions

View File

@ -66,6 +66,9 @@ service InternalService {
// GetRegion returns the region details for the given region.
rpc GetRegion(GetRegionRequest) returns (GetRegionResponse) {}
// GetVersion returns the ChirpStack version.
rpc GetVersion(google.protobuf.Empty) returns (GetVersionResponse) {}
}
message ApiKey {
@ -414,3 +417,8 @@ message RegionChannel {
// Max DR.
uint32 dr_max = 3;
}
message GetVersionResponse {
// version
string version = 1;
}