cli: remove node move command (#2922)

This commit is contained in:
Kristoffer Dalby 2025-12-01 21:43:31 +01:00 committed by GitHub
parent eec196d200
commit 16d811b306
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 104 additions and 823 deletions

View file

@ -123,13 +123,6 @@ service HeadscaleService {
};
}
rpc MoveNode(MoveNodeRequest) returns (MoveNodeResponse) {
option (google.api.http) = {
post : "/api/v1/node/{node_id}/user",
body : "*"
};
}
rpc BackfillNodeIPs(BackfillNodeIPsRequest)
returns (BackfillNodeIPsResponse) {
option (google.api.http) = {

View file

@ -100,13 +100,6 @@ message ListNodesRequest { string user = 1; }
message ListNodesResponse { repeated Node nodes = 1; }
message MoveNodeRequest {
uint64 node_id = 1;
uint64 user = 2;
}
message MoveNodeResponse { Node node = 1; }
message DebugCreateNodeRequest {
string user = 1;
string key = 2;