Fix #2, add rake task for PuSH-unsubscribing from remote users who have no
local followers. Remote users' usernames SHOULD be case-sensitive
This commit is contained in:
parent
af7ae348d7
commit
323474c97e
3 changed files with 22 additions and 3 deletions
|
@ -19,12 +19,17 @@ class Api::AccountsController < ApiController
|
|||
end
|
||||
|
||||
def follow
|
||||
@follow = current_user.account.follow!(@account)
|
||||
if @account.local?
|
||||
@follow = current_user.account.follow!(@account)
|
||||
else
|
||||
@follow = FollowService.new.(current_user.account, @account.acct)
|
||||
end
|
||||
|
||||
render action: :show
|
||||
end
|
||||
|
||||
def unfollow
|
||||
@unfollow = current_user.account.unfollow!(@account)
|
||||
@unfollow = UnfollowService.new.(current_user.account, @account)
|
||||
render action: :show
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue