Sha256: dd66255ac8c797cad618c72705da71b38e00ee14cef694917d856c792df16223
Contents?: true
Size: 518 Bytes
Versions: 26
Compression:
Stored size: 518 Bytes
Contents
# frozen_string_literal: true module Decidim module Budgets module Workflows # This Workflow allows users to vote in all budgets. class All < Base # No budget is highlighted for this workflow. def highlighted?(_resource) false end # Users can vote in all budgets with this workflow. def vote_allowed?(resource, consider_progress: true) # rubocop:disable Lint/UnusedMethodArgument !voted?(resource) end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems