Skip to content
Snippets Groups Projects
Commit 436e1ab5 authored by Fabian Seidl's avatar Fabian Seidl
Browse files

add reset all call

parent 09fb708f
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !1037. Comments created here will be created in the context of that merge request.
......@@ -27,6 +27,10 @@ service SubscriptionManagementService {
body: "*"
};
}
rpc ResetAllSubscriptions(ResetAllSubscriptionsRequest) returns (ResetAllSubscriptionsResponse) {
option (google.api.http) = {get: "/submanagement/reset"};
}
}
message Subscription{
......@@ -81,3 +85,11 @@ message AddRequest{
message AddResponse{
int64 timestamp = 1;
}
message ResetAllSubscriptionsRequest {
int64 timestamp = 1;
}
message ResetAllSubscriptionsResponse {
int64 timestamp = 1;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment