decidim-friendly_signup 0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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