Ensure only people allowed to see the poll can actually vote (#10161)
This commit is contained in:
parent
f2a1b8b96b
commit
7a25bb858a
1 changed files with 1 additions and 1 deletions
|
@ -2,6 +2,6 @@
|
|||
|
||||
class PollPolicy < ApplicationPolicy
|
||||
def vote?
|
||||
!current_account.blocking?(record.account) && !record.account.blocking?(current_account)
|
||||
StatusPolicy.new(current_account, record.status).show? && !current_account.blocking?(record.account) && !record.account.blocking?(current_account)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue