Browse Source

fixed fork后重命名项目标识再forked失败

pull/342/head
xxq250 2 years ago
parent
commit
ca85975197
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      app/controllers/forks_controller.rb

+ 3
- 0
app/controllers/forks_controller.rb View File

@@ -12,6 +12,9 @@ class ForksController < ApplicationController
def authenticate_project!
if current_user&.id == @project.user_id
render_result(-1, "自己不能fork自己的项目")
elsif ForkUser.exists?(fork_project_id: @project.id, user_id: current_user.id)
fork = ForkUser.find_by(fork_project_id: @project.id, user_id: current_user.id)
render json: { status: -1, identifier: fork.fork_project&.identifier, message: "fork失败,你已拥有了这个项目" }
elsif Project.exists?(user_id: current_user.id, identifier: @project.identifier)
render_result(0, "fork失败,你已拥有了这个项目")
end


Loading…
Cancel
Save