mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
14 lines
252 B
Ruby
14 lines
252 B
Ruby
class Blockchain::RepoBasicInfo < ApplicationQuery
|
|
|
|
attr_reader :params, :is_current_admin_user
|
|
|
|
def initialize(params)
|
|
@params = params
|
|
end
|
|
|
|
def call
|
|
info = find_blockchain_repo_info(params[:project_id].to_s)
|
|
return info
|
|
end
|
|
end
|