Browse Source

FIX [用户查询方式]临时处理获取readme文件问题

tags/v3.0.4(standalone)
jasder 5 years ago
parent
commit
e0eae66ab4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/controllers/repositories_controller.rb

+ 2
- 1
app/controllers/repositories_controller.rb View File

@@ -56,7 +56,8 @@ class RepositoriesController < ApplicationController
# TODO
# 临时处理readme文件问题
admin = User.find_by_login "jasder"
admin = current_user.blank? ? User.where(admin: true).last : current_user
result = Gitea::Repository::Readme::GetService.call(@owner.login, @project.identifier, @ref, admin&.gitea_token)
@readme =
if result[:status] == :success


Loading…
Cancel
Save