mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
20 lines
415 B
Ruby
20 lines
415 B
Ruby
|
class DesignElementsController < ApplicationController
|
||
|
def index
|
||
|
end
|
||
|
|
||
|
def test_select
|
||
|
render json: { data: [
|
||
|
['1', 'One'],
|
||
|
['2', 'Two'],
|
||
|
['3', 'Three'],
|
||
|
['4', 'Four'],
|
||
|
['5', 'Five'],
|
||
|
['6', 'Six'],
|
||
|
['7', 'Seven'],
|
||
|
['8', 'Eight'],
|
||
|
['9', 'Nine'],
|
||
|
['10', 'Ten']
|
||
|
].select { |item| item[1].downcase.include?(params[:query].downcase) } }
|
||
|
end
|
||
|
end
|