Merge branch 'develop' into standalone_develop

This commit is contained in:
xiaoxiaoqiong 2022-07-18 11:05:11 +08:00
commit e71d28736d
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ class Admins::DashboardsController < Admins::BaseController
@month_active_project_count = Project.where(updated_on: current_month).or(Project.where(id: month_project_ids)).count
# 新增项目数
@day_new_project_count = User.where(created_on: today).count
@weekly_new_project_count = User.where(created_on: current_week).count
@month_new_project_count = User.where(created_on: current_month).count
@day_new_project_count = Project.where(created_on: today).count
@weekly_new_project_count = Project.where(created_on: current_week).count
@month_new_project_count = Project.where(created_on: current_month).count
end
def month_active_user