a11yist/app/models/link_category.rb

12 lines
151 B
Ruby
Raw Permalink Normal View History

2024-09-05 22:54:38 +02:00
# frozen_string_literal: true
2024-07-26 00:59:00 +02:00
class LinkCategory < ApplicationRecord
has_many :links
2024-09-05 22:54:38 +02:00
has_rich_text :description
def t_name
name
end
2024-07-26 00:59:00 +02:00
end