~cytrogen/masto-fe

ref: d2dcb6c45a9db5439772f0553046e2c03a739a16 masto-fe/app/models/conversation_mute.rb -rw-r--r-- 341 bytes
d2dcb6c4 — Nick Schonning Autofix Rubocop Style/UnpackFirst (#23741) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
# == Schema Information
#
# Table name: conversation_mutes
#
#  id              :bigint(8)        not null, primary key
#  conversation_id :bigint(8)        not null
#  account_id      :bigint(8)        not null
#

class ConversationMute < ApplicationRecord
  belongs_to :account
  belongs_to :conversation
end