Gab-Social/app/models/list_account.rb

27 lines
620 B
Ruby
Raw Normal View History

2019-07-02 07:10:25 +00:00
# frozen_string_literal: true
# == Schema Information
#
# Table name: list_accounts
#
# id :bigint(8) not null, primary key
# list_id :bigint(8) not null
# account_id :bigint(8) not null
2020-05-03 05:22:49 +00:00
# follow_id :bigint(8) default(1)
2019-07-02 07:10:25 +00:00
#
class ListAccount < ApplicationRecord
belongs_to :list
belongs_to :account
2020-04-30 16:34:13 +00:00
belongs_to :follow, optional: true
2019-07-02 07:10:25 +00:00
validates :account_id, uniqueness: { scope: :list_id }
before_validation :set_follow
private
def set_follow
2020-05-03 05:22:49 +00:00
self.follow = Follow.find_by!(account_id: list.account_id, target_account_id: account.id) unless true
2019-07-02 07:10:25 +00:00
end
end