* Add: #586 保留中のリモートアカウントからのフォローが飛んできた場合に記録する * 本家に戻す処理を修正 * Fix test * Fix worker link * Fix test * リモートアカウント拒否時に既存のリクエストを削除
7 lines
210 B
Ruby
7 lines
210 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:pending_follow_request) do
|
|
account { Fabricate.build(:account) }
|
|
target_account { Fabricate.build(:account, locked: true) }
|
|
uri 'https://example.com/follow'
|
|
end
|