0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 07:23:30 +08:00
discourse/app/models/custom_emoji.rb
Jarek Radosz 8baf4d5d4c
DEV: Enable Style/RedundantSelf rubocop rule (#40098)
(to be enabled in the shared config)
2026-05-19 19:27:45 +02:00

43 lines
1,010 B
Ruby
Vendored

# frozen_string_literal: true
class CustomEmoji < ActiveRecord::Base
belongs_to :upload
belongs_to :user
has_many :upload_references, as: :target, dependent: :destroy
validates :name, presence: true, uniqueness: true
validates :upload_id, presence: true
validates :user_id, presence: true
before_validation :set_default_user_id, on: :create
after_save do
if saved_change_to_upload_id?
UploadReference.ensure_exist!(upload_ids: [upload_id], target: self)
end
end
private
def set_default_user_id
self.user_id ||= Discourse.system_user.id
end
end
# == Schema Information
#
# Table name: custom_emojis
#
# id :integer not null, primary key
# group :string(20)
# name :string not null
# created_at :datetime not null
# updated_at :datetime not null
# upload_id :integer not null
# user_id :integer default(-1), not null
#
# Indexes
#
# index_custom_emojis_on_name (name) UNIQUE
#