1
0
Fork 0
forked from gitea/nas

Remove inbound_quotes feature flag (#34958)

This commit is contained in:
Claire 2025-06-06 10:25:59 +02:00 committed by GitHub
parent f2cdbefa3c
commit 989ca63b59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 12 additions and 17 deletions

View file

@ -887,7 +887,7 @@ RSpec.describe ActivityPub::Activity::Create do
end
end
context 'with an unverifiable quote of a known post', feature: :inbound_quotes do
context 'with an unverifiable quote of a known post' do
let(:quoted_status) { Fabricate(:status) }
let(:object_json) do
@ -911,7 +911,7 @@ RSpec.describe ActivityPub::Activity::Create do
end
end
context 'with an unverifiable unknown post', feature: :inbound_quotes do
context 'with an unverifiable unknown post' do
let(:unknown_post_uri) { 'https://unavailable.example.com/unavailable-post' }
let(:object_json) do
@ -939,7 +939,7 @@ RSpec.describe ActivityPub::Activity::Create do
end
end
context 'with a verifiable quote of a known post', feature: :inbound_quotes do
context 'with a verifiable quote of a known post' do
let(:quoted_account) { Fabricate(:account, domain: 'quoted.example.com') }
let(:quoted_status) { Fabricate(:status, account: quoted_account) }
let(:approval_uri) { 'https://quoted.example.com/quote-approval' }