This commit is contained in:
Jasder 2020-07-15 09:59:12 +08:00
parent e0ae7b2aec
commit f358361b89
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class ProjectsController < ApplicationController
end
def simple
project = Project.includes(:owner, :repository).select(:id, :name, :identifier, :user_id, :project_type).find params[:id]
project = Project.includes(:owner, :repository).select(:id, :name, :identifier, :user_id, :project_type, :open_devops).find params[:id]
json_response(project)
end