DEV: Remove TagGuardian#can_create_tag? fallback (#25535)

We've changed access settings to be group membership based rather than based on the TL value directly. We kept both conditions here while we updated any plugins and themes. It should now be safe to remove.
This commit is contained in:
Ted Johansson
2024-02-02 13:48:53 +08:00
committed by GitHub
parent 06b7a6bd59
commit 2da7c74e60
2 changed files with 3 additions and 7 deletions

View File

@ -7,7 +7,7 @@ describe Chat::ChannelArchiveService do
end
fab!(:channel) { Fabricate(:category_channel) }
fab!(:user) { Fabricate(:user, admin: true, refresh_auto_groups: true) }
fab!(:user) { Fabricate(:admin, refresh_auto_groups: true) }
fab!(:category)
let(:topic_params) { { topic_title: "This will be a new topic", category_id: category.id } }
@ -117,7 +117,7 @@ describe Chat::ChannelArchiveService do
reaction_message = Chat::Message.last
Chat::MessageReaction.create!(
chat_message: reaction_message,
user: Fabricate(:user),
user: Fabricate(:user, refresh_auto_groups: true),
emoji: "+1",
)
stub_const(Chat::ChannelArchiveService, "ARCHIVED_MESSAGES_PER_POST", 5) do