podemos-info/participa2

View on GitHub
decidim-module-crowdfundings/app/queries/decidim/crowdfundings/pending_quarterly_contributions.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Decidim
  module Crowdfundings
    # Returns recurrent quarterly contributions that must be renewed
    class PendingQuarterlyContributions < Rectify::Query
      def query
        Contribution.accepted.quarterly_frequency
      end
    end
  end
end