mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 06:21:23 +00:00
* Enhance security handling logic: - Prioritize user's country in sorting securities and country codes. - Add comprehensive mapping for MIC codes to user-friendly exchange names. - Revamp combobox to consistently pull from a provider when available. - Improve handling of custom ticker and exchange input fields. * Localize securities combobox display and exchange labels. --------- Co-authored-by: luckyPipewrench <luckypipewrench@proton.me>
9 lines
192 B
Ruby
9 lines
192 B
Ruby
class SecuritiesController < ApplicationController
|
|
def index
|
|
@securities = Security.search_provider(
|
|
params[:q],
|
|
country_code: params[:country_code].presence
|
|
)
|
|
end
|
|
end
|