# 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