diff options
author | David Yip <yipdw@member.fsf.org> | 2018-05-04 14:16:30 -0500 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-05-04 14:16:30 -0500 |
commit | 7600067a300b650a6f30da19a469c913243f3a13 (patch) | |
tree | 8b84acffba4bd167b8e7c6d332c48013b68e7079 /app/models/concerns | |
parent | cb62935c0b00f41ff5d4ab77a8cc38174b05d186 (diff) | |
parent | 6793bec4c67e695100cb4d8551f0bda0b7e87b12 (diff) |
Merge remote-tracking branch 'origin/master' into gs-master
Conflicts: app/controllers/follower_accounts_controller.rb app/controllers/following_accounts_controller.rb db/schema.rb
Diffstat (limited to 'app/models/concerns')
-rw-r--r-- | app/models/concerns/account_interactions.rb | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app/models/concerns/account_interactions.rb b/app/models/concerns/account_interactions.rb index 20fc74ba6..a064248d9 100644 --- a/app/models/concerns/account_interactions.rb +++ b/app/models/concerns/account_interactions.rb @@ -82,16 +82,19 @@ module AccountInteractions has_many :domain_blocks, class_name: 'AccountDomainBlock', dependent: :destroy end - def follow!(other_account, reblogs: nil) + def follow!(other_account, reblogs: nil, uri: nil) reblogs = true if reblogs.nil? - rel = active_relationships.create_with(show_reblogs: reblogs).find_or_create_by!(target_account: other_account) - rel.update!(show_reblogs: reblogs) + rel = active_relationships.create_with(show_reblogs: reblogs, uri: uri) + .find_or_create_by!(target_account: other_account) + + rel.update!(show_reblogs: reblogs) rel end - def block!(other_account) - block_relationships.find_or_create_by!(target_account: other_account) + def block!(other_account, uri: nil) + block_relationships.create_with(uri: uri) + .find_or_create_by!(target_account: other_account) end def mute!(other_account, notifications: nil) |