live user op

This commit is contained in:
boufni95 2023-10-20 16:55:26 +02:00
parent dd09f5987b
commit 62a2e437af
12 changed files with 2311 additions and 2153 deletions

View file

@ -298,5 +298,11 @@ service LightningPub {
option (http_route) = "/api/user/lnurl_channel/url";
option (nostr) = true;
}
rpc GetLiveUserOperations(structs.Empty) returns (stream structs.LiveUserOperation){
option (auth_type) = "User";
option (http_method) = "post";
option (http_route) = "/api/user/operations/sub";
option (nostr) = true;
}
// </User>
}

View file

@ -252,4 +252,8 @@ message Product {
message GetProductBuyLinkResponse {
string link = 1;
}
message LiveUserOperation {
string id = 1;
}