add Refresh
CI / changes (push) Successful in 6s
CI / docker-bff (push) Successful in 8s
CI / docker-product (push) Failing after 2s

This commit is contained in:
2026-08-10 18:05:29 +08:00
parent 7228d3fedc
commit 9865f7dae9
16 changed files with 390 additions and 245 deletions
+9
View File
@@ -55,6 +55,9 @@ message AdminLoginRequest {
string password = 2;
}
message AdminEmptyRequest {
}
service Admin {
rpc AdminEdit(AdminEditRequest) returns(Response){
option (google.api.http) = {
@@ -98,4 +101,10 @@ service Admin {
body: "*"
};
};
rpc AdminRefresh(AdminEmptyRequest) returns(Response){
option (google.api.http) = {
post: "/admin/v3/refresh"
body: "*"
};
};
}