Merge branch 'develop' into standalone_develop

This commit is contained in:
yystopf 2023-02-02 18:13:19 +08:00
commit a746e791b0
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ class Api::V1::Projects::CodeStatsController < Api::V1::BaseController
before_action :require_public_and_member_above, only: [:index] before_action :require_public_and_member_above, only: [:index]
def index def index
@result_object = Api::V1::Projects::CodeStats::ListService.call(@project, {page: page, limit, limit, ref: params[:ref]}, current_user&.gitea_token) @result_object = Api::V1::Projects::CodeStats::ListService.call(@project, {page: page, limit: limit, ref: params[:ref]}, current_user&.gitea_token)
puts @result_object puts @result_object
end end
end end