8 lines
215 B
Ruby
8 lines
215 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Namespace::AdminNote < ApplicationRecord
|
||
|
belongs_to :namespace, inverse_of: :admin_note
|
||
|
validates :namespace, presence: true
|
||
|
validates :note, length: { maximum: 1000 }
|
||
|
end
|