decidim-friendly_signup 0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ # This holds the decidim-meetings version.
5
+ module FriendlySignup
6
+ DECIDIM_VERSION = "0.26.2"
7
+ COMPAT_DECIDIM_VERSION = "~> 0.26.0"
8
+ VERSION = "0.1"
9
+ end
10
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "decidim/friendly_signup/engine"
4
+
5
+ module Decidim
6
+ module FriendlySignup
7
+ include ActiveSupport::Configurable
8
+
9
+ # Whether to override passwords boxes or not
10
+ config_accessor :override_passwords do
11
+ true
12
+ end
13
+ end
14
+ end