From bfc509f44ac5506d1d675eb01aeda1324d4cdb6b Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Sun, 12 May 2019 20:14:35 +0200 Subject: Add database row to hold status content type --- app/models/status.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app') diff --git a/app/models/status.rb b/app/models/status.rb index 8736e65e3..e0dc74790 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -24,6 +24,7 @@ # local_only :boolean # full_status_text :text default(""), not null # poll_id :bigint(8) +# content_type :string # class Status < ApplicationRecord @@ -74,6 +75,7 @@ class Status < ApplicationRecord validates_with DisallowedHashtagsValidator validates :reblog, uniqueness: { scope: :account }, if: :reblog? validates :visibility, exclusion: { in: %w(direct limited) }, if: :reblog? + validates :content_type, inclusion: { in: %w(text/plain text/markdown) }, allow_nil: true accepts_nested_attributes_for :poll -- cgit