mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
8 lines
209 B
Ruby
8 lines
209 B
Ruby
class SecuritiesController < ApplicationController
|
|
def index
|
|
@securities = Security.search_provider({
|
|
search: params[:q],
|
|
country: params[:country_code] == "US" ? "US" : nil
|
|
})
|
|
end
|
|
end
|