change verify token response

This commit is contained in:
chenjing 2023-06-20 15:50:11 +08:00
parent 65816a980b
commit 1b09c93b5e
2 changed files with 2 additions and 6 deletions

View File

@ -65,11 +65,7 @@ class ProjectsController < ApplicationController
def verify_auth_token def verify_auth_token
data = Projects::VerifyAuthTokenService.call(params[:clone_addr], params[:auth_token]) data = Projects::VerifyAuthTokenService.call(params[:clone_addr], params[:auth_token])
if data render_ok({data: data})
render_ok
else
render_error('token验证不通过')
end
end end
def migrate def migrate

View File

@ -7,7 +7,7 @@ class Projects::VerifyAuthTokenService < ApplicationService
@repo = nil @repo = nil
@owner = nil @owner = nil
@website = nil @website = nil
@success = nil @success = false
end end
def call def call