mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
7 lines
145 B
Ruby
7 lines
145 B
Ruby
module CategoriesHelper
|
|
def null_category
|
|
Category.new \
|
|
name: "Uncategorized",
|
|
color: Category::UNCATEGORIZED_COLOR
|
|
end
|
|
end
|