mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Use Guardian.basic_user instead of new (anon) (#24705)
c.f. de983796e1
There will soon be additional login_required checks
for Guardian, and the intent of many checks by automated
systems is better fulfilled by using BasicUser, which
simulates a logged in TL0 forum user, rather than an
anon user.
In some cases the use of anon still makes sense (e.g.
anonymous_cache), and in that case the more explicit
`Guardian.anon_user` is used
This commit is contained in:
@@ -114,7 +114,7 @@ module DiscoursePoll
|
||||
polls,
|
||||
each_serializer: PollSerializer,
|
||||
root: false,
|
||||
scope: Guardian.new(nil),
|
||||
scope: Guardian.basic_user,
|
||||
).as_json
|
||||
post.publish_message!("/polls/#{post.topic_id}", post_id: post.id, polls: polls)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user