mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 19:53:05 +08:00
8 lines
210 B
Ruby
8 lines
210 B
Ruby
class LicensesController < ApplicationController
|
|
def index
|
|
#@licenses = License.search(params[:name]).
|
|
q = License.ransack(name_cont: params[:name])
|
|
@licenses = q.result(distinct: true)
|
|
end
|
|
end
|