mastodon/app/models/account_warning_preset.rb
2025-08-15 08:53:48 -04:00

27 lines
631 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: account_warning_presets
#
# id :bigint(8) not null, primary key
# text :text default(""), not null
# created_at :datetime not null
# updated_at :datetime not null
# title :string default(""), not null
#
class AccountWarningPreset < ApplicationRecord
LABEL_TEXT_LENGTH = 30
validates :text, presence: true
scope :alphabetic, -> { order(title: :asc, text: :asc) }
def to_label
[title.presence, text.to_s.truncate(LABEL_TEXT_LENGTH)]
.compact
.join(' - ')
end
end