forgeplus/app/controllers/ci/languages_controller.rb

21 lines
437 B
Ruby
Raw Normal View History

2020-08-13 23:38:32 +08:00
class Ci::LanguagesController < Ci::BaseController
2020-08-06 14:26:19 +08:00
# TODO 需要开启权限认证只有该项目devops初始化成功后才能获取语言列表
2020-07-14 15:06:09 +08:00
before_action :find_langugae, only: :show
def index
2020-08-13 23:38:32 +08:00
@languages = Ci::Language.by_usage_amount_desc
2020-07-14 15:06:09 +08:00
end
def show
end
def common
2020-08-13 23:38:32 +08:00
@languages = Ci::Language.six_common
2020-07-14 15:06:09 +08:00
end
private
def find_langugae
2020-08-13 23:38:32 +08:00
@language = Ci::Language.find params[:id]
2020-07-14 15:06:09 +08:00
end
end