|
|
@ -70,8 +70,8 @@ module AccountInteractions
|
|
|
|
block_relationships.find_or_create_by!(target_account: other_account)
|
|
|
|
block_relationships.find_or_create_by!(target_account: other_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def mute!(other_account)
|
|
|
|
def mute!(other_account, notifications: true)
|
|
|
|
mute_relationships.find_or_create_by!(target_account: other_account)
|
|
|
|
mute_relationships.create_with(hide_notifications: notifications).find_or_create_by!(target_account: other_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def mute_conversation!(conversation)
|
|
|
|
def mute_conversation!(conversation)
|
|
|
@ -127,6 +127,10 @@ module AccountInteractions
|
|
|
|
conversation_mutes.where(conversation: conversation).exists?
|
|
|
|
conversation_mutes.where(conversation: conversation).exists?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def muting_notifications?(other_account)
|
|
|
|
|
|
|
|
mute_relationships.where(target_account: other_account, hide_notifications: true).exists?
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def requested?(other_account)
|
|
|
|
def requested?(other_account)
|
|
|
|
follow_requests.where(target_account: other_account).exists?
|
|
|
|
follow_requests.where(target_account: other_account).exists?
|
|
|
|
end
|
|
|
|
end
|
|
|
|