mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
27 lines
631 B
Ruby
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
|