11 lines
151 B
Ruby
11 lines
151 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LinkCategory < ApplicationRecord
|
|
has_many :links
|
|
|
|
has_rich_text :description
|
|
|
|
def t_name
|
|
name
|
|
end
|
|
end
|