1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 13:49:39 +02:00
Maybe/app/helpers/transactions_helper.rb

22 lines
609 B
Ruby
Raw Normal View History

module TransactionsHelper
def transaction_search_filters
[
{ key: "account_filter", icon: "layers" },
{ key: "date_filter", icon: "calendar" },
2024-10-04 09:17:48 -04:00
{ key: "type_filter", icon: "tag" },
{ key: "amount_filter", icon: "hash" },
2024-10-04 09:17:48 -04:00
{ key: "category_filter", icon: "shapes" },
{ key: "tag_filter", icon: "tags" },
{ key: "merchant_filter", icon: "store" }
]
end
def get_transaction_search_filter_partial_path(filter)
"transactions/searches/filters/#{filter[:key]}"
end
def get_default_transaction_search_filter
transaction_search_filters[0]
end
end