mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00: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
|