Sha256: ae3b3d6c51e3102fa3b1ee3d2f7fba3e1a932dcbeb17fc3ac3cb4dff50350f86
Contents?: true
Size: 475 Bytes
Versions: 28
Compression:
Stored size: 475 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) !voted?(resource) end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems