mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
101ec21bc9
Before this commit, we did not have guardian checks in place to determine if a topic's title associated with a user badge should be displayed or not. This means that the topic title of topics with restricted access could be leaked to anon and users without access if certain conditions are met. While we will not specify the conditions required, we have internally assessed that the odds of meeting such conditions are low. With this commit, we will now apply a guardian check to ensure that the current user is able to see a topic before the topic's title is included in the serialized object of a `UserBadge`.
9 lines
141 B
Ruby
9 lines
141 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:user_badge) do
|
|
user
|
|
badge
|
|
granted_at { Time.zone.now }
|
|
granted_by(fabricator: :admin)
|
|
end
|