Browse Source

FIX bug

tags/v1.0.0
Jasder 6 years ago
parent
commit
f358361b89
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/projects_controller.rb

+ 1
- 1
app/controllers/projects_controller.rb 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



Loading…
Cancel
Save