Merge branch 'develop' into standalone_develop

This commit is contained in:
yystopf 2022-02-24 18:09:20 +08:00
commit f0b8489828
1 changed files with 3 additions and 3 deletions

View File

@ -16,15 +16,15 @@ class Cache::V2::UserDateRankService < ApplicationService
end
def read_rank
user_rank
user_rank unless @user_id.blank?
end
def read_statistic
user_statistic
user_statistic unless @user_id.blank?
end
def call
set_user_rank
set_user_rank unless @user_id.blank?
end
private