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