module Decidim::Budgets

Base module for this engine.

This holds the decidim-budgets version.

Public Class Methods

version() click to toggle source
# File lib/decidim/budgets/version.rb, line 6
def self.version
  "0.24.3"
end
workflows() click to toggle source

Public: Stores the array of available workflows

# File lib/decidim/budgets/workflows.rb, line 10
def self.workflows
  @workflows ||= {
    one: Workflows::One,
    all: Workflows::All
  }
end