测试bug
This commit is contained in:
parent
f66d0eff0b
commit
aced4885d7
|
@ -11,8 +11,14 @@ class ProjectsController < ApplicationController
|
||||||
scope = Projects::ListQuery.call(params.merge(is_admin: is_admin, user_id: current_user.try(:id)))
|
scope = Projects::ListQuery.call(params.merge(is_admin: is_admin, user_id: current_user.try(:id)))
|
||||||
|
|
||||||
@total_count = scope.size
|
@total_count = scope.size
|
||||||
|
other_projects = scope.page(params[:page]).limit(params[:limit] || 15)
|
||||||
|
projects = paginate(scope)
|
||||||
|
Rails.logger.info("##########____other_projects_projects_as_json__________#############{other_projects.as_json}")
|
||||||
|
|
||||||
@projects = paginate(scope)
|
Rails.logger.info("##########____projects_as_json__________#############{projects.as_json}")
|
||||||
|
@projects = projects
|
||||||
|
Rails.logger.info("##########___@projects__________#############{@projects.as_json}")
|
||||||
|
@projects
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
json.total_count @total_count
|
json.total_count @total_count
|
||||||
json.all_projects @projects.as_json
|
json.all_projects @projects.as_json
|
||||||
json.projects do
|
json.projects do
|
||||||
|
|
||||||
json.array! @projects.to_a do |project|
|
json.array! @projects.to_a do |project|
|
||||||
json.partial! 'project', project: project
|
json.partial! 'project', project: project
|
||||||
json.author do
|
json.author do
|
||||||
|
|
Loading…
Reference in New Issue