mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 05:35:46 +08:00
Merge branch 'develop' into standalone_develop
This commit is contained in:
@@ -14,7 +14,7 @@ class Trace::AddUserService < Trace::ClientService
|
|||||||
end
|
end
|
||||||
|
|
||||||
def call
|
def call
|
||||||
result = post(url, request_params)
|
result = post(url, {data: request_params})
|
||||||
response = render_response(result)
|
response = render_response(result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ class Trace::CheckService < Trace::ClientService
|
|||||||
end
|
end
|
||||||
|
|
||||||
def call
|
def call
|
||||||
result = authed_post(token, url, request_params)
|
result = authed_post(token, url, {data: request_params})
|
||||||
reponse = render_response(result)
|
reponse = render_response(result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ class Trace::LoginService < Trace::ClientService
|
|||||||
end
|
end
|
||||||
|
|
||||||
def call
|
def call
|
||||||
result = post(url, request_params)
|
result = post(url, {data: request_params})
|
||||||
response = render_response(result)
|
response = render_response(result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ class Trace::ReloadCheckService < Trace::ClientService
|
|||||||
end
|
end
|
||||||
|
|
||||||
def call
|
def call
|
||||||
result = authed_post(token, url, request_params)
|
result = authed_post(token, url, {data: request_params})
|
||||||
response = render_response(result)
|
response = render_response(result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user