mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 16:52:20 +01:00
8 lines
183 B
Ruby
8 lines
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class PollPolicy < ApplicationPolicy
|
||
|
def vote?
|
||
|
!current_account.blocking?(record.account) && !record.account.blocking?(current_account)
|
||
|
end
|
||
|
end
|