decidim-system 0.23.6 → 0.24.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-system might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/decidim/system/application.scss +9 -0
- data/app/commands/decidim/system/create_default_pages.rb +1 -0
- data/app/forms/decidim/system/file_upload_settings_form.rb +3 -3
- data/app/forms/decidim/system/update_organization_form.rb +6 -6
- data/app/views/decidim/system/admins/index.html.erb +2 -2
- data/app/views/decidim/system/devise/passwords/edit.html.erb +1 -1
- data/app/views/decidim/system/devise/passwords/new.html.erb +1 -1
- data/app/views/decidim/system/oauth_applications/index.html.erb +2 -2
- data/app/views/decidim/system/organizations/_smtp_settings.html.erb +0 -1
- data/app/views/decidim/system/organizations/index.html.erb +2 -2
- data/app/views/decidim/system/organizations/show.html.erb +1 -1
- data/app/views/decidim/system/shared/_notices.html.erb +1 -1
- data/config/locales/es-MX.yml +0 -11
- data/config/locales/es-PY.yml +0 -11
- data/config/locales/es.yml +0 -11
- data/config/locales/pl.yml +9 -14
- data/config/locales/ro-RO.yml +0 -79
- data/config/locales/sv.yml +0 -12
- data/db/seeds.rb +4 -2
- data/lib/decidim/system/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 194982ae96e5736ad7d84a7eeb51bdc069a96ee8848ce7900ee77bd7d5426bf6
|
4
|
+
data.tar.gz: 818c0193ae181a0cad339d4861571c77e9e79799d270b29aba1cb5da1e7ca04c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66b5ffd75741b8366c436001e170383a12caa9f0aab554f22047f700782a38c07c62579af673edc2a57f3f3a09c2b5c5fa3abac3286f549162654fceaafd22ed
|
7
|
+
data.tar.gz: 8b362994b4df09e6378a2d5b4ef6d1ef7975c0a6edd7157fc095814dd4034b401c7db40b48b7efdb6460ddd2889792371b525ca1184f259cc154618734becb87
|
@@ -1,3 +1,12 @@
|
|
1
|
+
// Foundation Variables
|
2
|
+
$primary-color: null;
|
3
|
+
$secondary-color: null;
|
4
|
+
$success-color: null;
|
5
|
+
$warning-color: null;
|
6
|
+
$alert-color: null;
|
7
|
+
$-zf-size: null;
|
8
|
+
$-zf-bp-value: null;
|
9
|
+
|
1
10
|
@import "foundation_and_overrides";
|
2
11
|
@import "layout";
|
3
12
|
@import "login";
|
@@ -51,9 +51,9 @@ module Decidim
|
|
51
51
|
|
52
52
|
def map_model(model)
|
53
53
|
self.secondary_hosts = model.secondary_hosts.join("\n")
|
54
|
-
self.omniauth_settings =
|
55
|
-
|
56
|
-
end
|
54
|
+
self.omniauth_settings = (model.omniauth_settings || {}).transform_values do |v|
|
55
|
+
Decidim::OmniauthProvider.value_defined?(v) ? Decidim::AttributeEncryptor.decrypt(v) : v
|
56
|
+
end
|
57
57
|
self.file_upload_settings = FileUploadSettingsForm.from_model(model.file_upload_settings)
|
58
58
|
end
|
59
59
|
|
@@ -86,9 +86,9 @@ module Decidim
|
|
86
86
|
end
|
87
87
|
|
88
88
|
def encrypted_omniauth_settings
|
89
|
-
|
90
|
-
|
91
|
-
end
|
89
|
+
omniauth_settings.transform_values do |v|
|
90
|
+
Decidim::OmniauthProvider.value_defined?(v) ? Decidim::AttributeEncryptor.encrypt(v) : v
|
91
|
+
end
|
92
92
|
end
|
93
93
|
|
94
94
|
private
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<% end %>
|
4
4
|
|
5
5
|
<div class="actions title">
|
6
|
-
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.admin.name", scope: "decidim.system")), [
|
6
|
+
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.admin.name", scope: "decidim.system")), ["new", "admin"], class: "new" %>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<table class="stack">
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<%= l admin.created_at, format: :short %>
|
25
25
|
</td>
|
26
26
|
<td class="actions">
|
27
|
-
<%= link_to t("actions.edit", scope: "decidim.system"), [
|
27
|
+
<%= link_to t("actions.edit", scope: "decidim.system"), ["edit", admin] %>
|
28
28
|
<%= link_to t("actions.destroy", scope: "decidim.system"), admin, method: :delete, class: "small alert button", data: { confirm: t("actions.confirm_destroy", scope: "decidim.system") } %>
|
29
29
|
</td>
|
30
30
|
</tr>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<h2>Change your password</h2>
|
2
2
|
|
3
3
|
<%= decidim_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
|
4
|
-
<%=
|
4
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
5
5
|
<%= f.hidden_field :reset_password_token %>
|
6
6
|
|
7
7
|
<div class="field">
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<h2>Forgot your password?</h2>
|
2
2
|
|
3
3
|
<%= decidim_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
|
4
|
-
<%=
|
4
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
5
5
|
|
6
6
|
<div class="field">
|
7
7
|
<%= f.email_field :email, autofocus: true %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<% end %>
|
4
4
|
|
5
5
|
<div class="actions title">
|
6
|
-
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.oauth_application.name", scope: "decidim.system")), [
|
6
|
+
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.oauth_application.name", scope: "decidim.system")), ["new", "oauth_application"], class: "new" %>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<table class="stack">
|
@@ -32,7 +32,7 @@
|
|
32
32
|
<%= l oauth_application.created_at, format: :short %>
|
33
33
|
</td>
|
34
34
|
<td class="actions">
|
35
|
-
<%= link_to t("actions.edit", scope: "decidim.system"), [
|
35
|
+
<%= link_to t("actions.edit", scope: "decidim.system"), ["edit", oauth_application] %>
|
36
36
|
<%= link_to t("actions.destroy", scope: "decidim.system"), oauth_application, method: :delete, class: "small alert button", data: { confirm: t(".confirm_delete") } %>
|
37
37
|
</td>
|
38
38
|
</tr>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<% end %>
|
4
4
|
|
5
5
|
<div class="actions title">
|
6
|
-
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.organization.name", scope: "decidim.system")), [
|
6
|
+
<%= link_to t("actions.new", scope: "decidim.system", name: t("models.organization.name", scope: "decidim.system")), ["new", "organization"], class: "new" %>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<table class="stack">
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<%= l organization.created_at, format: :short %>
|
26
26
|
</td>
|
27
27
|
<td class="actions">
|
28
|
-
<%= link_to t("actions.edit", scope: "decidim.system"), [
|
28
|
+
<%= link_to t("actions.edit", scope: "decidim.system"), ["edit", organization] %>
|
29
29
|
</td>
|
30
30
|
</tr>
|
31
31
|
<% end %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<% if Decidim::Organization.none? %>
|
4
4
|
<div class="flash callout warning">
|
5
5
|
<% guide = link_to t(".our_getting_started_guide"),
|
6
|
-
"https://
|
6
|
+
"https://docs.decidim.org/",
|
7
7
|
target: :blank %>
|
8
8
|
|
9
9
|
<%= t(".no_organization_warning_html", guide: guide) %>
|
data/config/locales/es-MX.yml
CHANGED
@@ -7,13 +7,6 @@ es-MX:
|
|
7
7
|
organization_name: Organización
|
8
8
|
organization_url: URL de organización
|
9
9
|
redirect_uri: Redirigir URI
|
10
|
-
organization:
|
11
|
-
address: Nombre de host SMTP
|
12
|
-
from_email: Dirección de correo electrónico
|
13
|
-
from_label: Etiqueta
|
14
|
-
password: Contraseña
|
15
|
-
port: Puerto
|
16
|
-
user_name: Nombre de usuario
|
17
10
|
organization_file_uploads:
|
18
11
|
allowed_content_types:
|
19
12
|
admin: Tipos MIME del panel de administración
|
@@ -160,10 +153,6 @@ es-MX:
|
|
160
153
|
api_key: Clave API
|
161
154
|
api_secret: Secreto API
|
162
155
|
smtp_settings:
|
163
|
-
fieldsets:
|
164
|
-
sender: Remitente
|
165
|
-
instructions:
|
166
|
-
from_label: 'El remitente de correo electrónico será: "su-nombre de organización <your-organization@example.org>". Déjalo en blanco para usar el campo ''Dirección de correo electrónico'' como etiqueta'
|
167
156
|
placeholder:
|
168
157
|
from_email: tu-organizacion@example.org
|
169
158
|
from_label: el-nombre-de-tu-organizacion
|
data/config/locales/es-PY.yml
CHANGED
@@ -7,13 +7,6 @@ es-PY:
|
|
7
7
|
organization_name: Organización
|
8
8
|
organization_url: URL de organización
|
9
9
|
redirect_uri: Redirigir URI
|
10
|
-
organization:
|
11
|
-
address: Nombre de host SMTP
|
12
|
-
from_email: Dirección de correo electrónico
|
13
|
-
from_label: Etiqueta
|
14
|
-
password: Contraseña
|
15
|
-
port: Puerto
|
16
|
-
user_name: Nombre de usuario
|
17
10
|
organization_file_uploads:
|
18
11
|
allowed_content_types:
|
19
12
|
admin: Tipos MIME del panel de administración
|
@@ -160,10 +153,6 @@ es-PY:
|
|
160
153
|
api_key: Clave API
|
161
154
|
api_secret: Secreto API
|
162
155
|
smtp_settings:
|
163
|
-
fieldsets:
|
164
|
-
sender: Remitente
|
165
|
-
instructions:
|
166
|
-
from_label: 'El remitente de correo electrónico será: "su-nombre de organización <your-organization@example.org>". Déjalo en blanco para usar el campo ''Dirección de correo electrónico'' como etiqueta'
|
167
156
|
placeholder:
|
168
157
|
from_email: tu-organizacion@example.org
|
169
158
|
from_label: el-nombre-de-tu-organizacion
|
data/config/locales/es.yml
CHANGED
@@ -7,13 +7,6 @@ es:
|
|
7
7
|
organization_name: Organización
|
8
8
|
organization_url: URL de organización
|
9
9
|
redirect_uri: Redirigir URI
|
10
|
-
organization:
|
11
|
-
address: Nombre de host SMTP
|
12
|
-
from_email: Dirección de correo electrónico
|
13
|
-
from_label: Etiqueta
|
14
|
-
password: Contraseña
|
15
|
-
port: Puerto
|
16
|
-
user_name: Nombre de usuario
|
17
10
|
organization_file_uploads:
|
18
11
|
allowed_content_types:
|
19
12
|
admin: Tipos MIME del panel de administración
|
@@ -160,10 +153,6 @@ es:
|
|
160
153
|
api_key: Clave API
|
161
154
|
api_secret: Secreto API
|
162
155
|
smtp_settings:
|
163
|
-
fieldsets:
|
164
|
-
sender: Remitente
|
165
|
-
instructions:
|
166
|
-
from_label: 'El remitente de correo electrónico será: "su-nombre de organización <your-organization@example.org>". Déjalo en blanco para usar el campo ''Dirección de correo electrónico'' como etiqueta'
|
167
156
|
placeholder:
|
168
157
|
from_email: tu-organizacion@example.org
|
169
158
|
from_label: el-nombre-de-tu-organizacion
|
data/config/locales/pl.yml
CHANGED
@@ -16,11 +16,11 @@ pl:
|
|
16
16
|
user_name: Nazwa użytkownika
|
17
17
|
organization_file_uploads:
|
18
18
|
allowed_content_types:
|
19
|
-
admin: Typy
|
20
|
-
default: Domyślne typy
|
19
|
+
admin: Typy MIME administratora
|
20
|
+
default: Domyślne typy MIME
|
21
21
|
allowed_file_extensions:
|
22
|
-
admin: Rozszerzenia plików
|
23
|
-
default: Domyślne
|
22
|
+
admin: Rozszerzenia plików administratora
|
23
|
+
default: Domyślne rozszerzenia plików
|
24
24
|
image: Rozszerzenia pliku obrazu
|
25
25
|
maximum_file_size:
|
26
26
|
avatar: Rozmiar pliku awatara
|
@@ -119,22 +119,17 @@ pl:
|
|
119
119
|
secondary_hosts_hint: Wpisz każdy z nich w nowej linii
|
120
120
|
file_upload_settings:
|
121
121
|
content_types:
|
122
|
-
|
123
|
-
|
124
|
-
intro_html: Dodajesz wildcard ze znakiem gwiazdki dla typów plików, np. <code>image/*</code>.
|
125
|
-
title: Dozwolone typy plików
|
122
|
+
default_hint: Te typy MIME są domyślnie dozwolone dla wszystkich użytkowników.
|
123
|
+
title: Dozwolone typy MIME
|
126
124
|
file_extensions:
|
127
|
-
admin_hint: Te typy plików są dozwolone dla przesyłania w sekcji administracyjnej. Administratorzy powinni być świadomi zagrożeń związanych z przesyłaniem niektórych formatów dokumentów, więc możesz oczekiwać, że będą ostrożni przy przesyłaniu plików.
|
128
|
-
default_hint: Te typy plików są domyślnie dozwolone dla wszystkich użytkowników.
|
129
|
-
image_hint: Te typy plików są dozwolone dla wszelkich rodzajów importu.
|
130
125
|
title: Dozwolone rozszerzenia plików
|
131
126
|
file_sizes:
|
132
127
|
avatar_hint: Megabajty (MB). Ten limit rozmiaru pliku jest używany do przesyłania obrazu awatara.
|
133
128
|
default_hint: Megabajty (MB). Ten limit rozmiaru pliku jest domyślny, jest używany dla wszystkich przesyłanych plików, chyba że określono inaczej.
|
134
129
|
title: Maksymalne rozmiary plików
|
135
130
|
intro: |
|
136
|
-
Proszę zachować szczególną ostrożność podczas rozważania zmiany tych ustawień. Im mniej
|
137
|
-
Zezwalanie na określone rozszerzenia lub typów
|
131
|
+
Proszę zachować szczególną ostrożność podczas rozważania zmiany tych ustawień. Im mniej na to pozwalasz, tym lepiej.
|
132
|
+
Zezwalanie na określone rozszerzenia plików lub typów MIME może narazić użytkowników systemu na zagrożenia bezpieczeństwa i może mieć również wpływ na dostępność witryny.
|
138
133
|
index:
|
139
134
|
title: Organizacje
|
140
135
|
new:
|
@@ -163,7 +158,7 @@ pl:
|
|
163
158
|
fieldsets:
|
164
159
|
sender: Nadawca
|
165
160
|
instructions:
|
166
|
-
from_label: 'Nadawcą wiadomości e-mail będzie: "
|
161
|
+
from_label: 'Nadawcą wiadomości e-mail będzie: "Twoja organizacja <your-organization@example.org>". Pozostaw puste, aby użyć "Adres e-mail" jako etykiety'
|
167
162
|
placeholder:
|
168
163
|
from_email: twoja-organizacja@przyklad.org
|
169
164
|
from_label: twoja-nazwa-organizacji
|
data/config/locales/ro-RO.yml
CHANGED
@@ -1,36 +1,4 @@
|
|
1
1
|
ro:
|
2
|
-
activemodel:
|
3
|
-
attributes:
|
4
|
-
oauth_application:
|
5
|
-
name: Numele aplicației OAuth
|
6
|
-
organization_logo: Sigla organizației (pătrat)
|
7
|
-
organization_name: Organizație
|
8
|
-
organization_url: URL-ul organizației
|
9
|
-
redirect_uri: URI de redirectionare
|
10
|
-
organization:
|
11
|
-
address: SMTP hostname
|
12
|
-
from_email: Adresă de e-mail
|
13
|
-
from_label: Etichetă
|
14
|
-
password: Parolă
|
15
|
-
port: Port
|
16
|
-
user_name: Nume de utilizator
|
17
|
-
organization_file_uploads:
|
18
|
-
allowed_content_types:
|
19
|
-
admin: Tipuri MIME admin
|
20
|
-
default: Tipuri MIME implicite
|
21
|
-
allowed_file_extensions:
|
22
|
-
admin: Extensii fişiere administrator
|
23
|
-
default: Extensii de fișier implicite
|
24
|
-
image: Extensiile fişierului imagine
|
25
|
-
maximum_file_size:
|
26
|
-
avatar: Dimensiune avatar fişier
|
27
|
-
default: Dimensiunea implicită a fișierului
|
28
|
-
errors:
|
29
|
-
models:
|
30
|
-
oauth_application:
|
31
|
-
attributes:
|
32
|
-
redirect_uri:
|
33
|
-
must_be_ssl: URL-ul de redirecționare trebuie să fie un URL SSL
|
34
2
|
decidim:
|
35
3
|
system:
|
36
4
|
actions:
|
@@ -64,7 +32,6 @@ ro:
|
|
64
32
|
menu:
|
65
33
|
admins: Administratori
|
66
34
|
dashboard: Panou
|
67
|
-
oauth_applications: Aplicații OAuth
|
68
35
|
organizations: Organizații
|
69
36
|
models:
|
70
37
|
admin:
|
@@ -74,67 +41,21 @@ ro:
|
|
74
41
|
name: Admin
|
75
42
|
validations:
|
76
43
|
email_uniqueness: un alt administrator cu același e-mail există deja
|
77
|
-
oauth_application:
|
78
|
-
fields:
|
79
|
-
created_at: Creat la
|
80
|
-
name: Numele aplicației OAuth
|
81
|
-
organization_name: Organizație
|
82
|
-
name: Aplicație OAuth
|
83
44
|
organization:
|
84
45
|
actions:
|
85
46
|
save_and_invite: Creați organizație și invitați administrator
|
86
47
|
fields:
|
87
48
|
created_at: Creat la
|
88
|
-
file_upload_settings: Setări pentru încărcarea fișierului
|
89
49
|
name: Nume
|
90
50
|
omniauth_settings: Setări Omniauth
|
91
51
|
smtp_settings: Setări SMTP
|
92
52
|
name: Organizație
|
93
|
-
oauth_applications:
|
94
|
-
create:
|
95
|
-
error: A apărut o eroare la crearea acestei aplicații.
|
96
|
-
success: Aplicație creată cu succes.
|
97
|
-
destroy:
|
98
|
-
error: A apărut o problemă la eliminarea acestei aplicații.
|
99
|
-
success: Aplicație eliminată cu succes.
|
100
|
-
edit:
|
101
|
-
save: Salveaza
|
102
|
-
title: Editați aplicația
|
103
|
-
form:
|
104
|
-
select_organization: Selectați o organizație
|
105
|
-
index:
|
106
|
-
confirm_delete: Sunteți sigur(ă) că doriți să ștergeți această aplicație?
|
107
|
-
title: Aplicații OAuth
|
108
|
-
new:
|
109
|
-
save: Salveaza
|
110
|
-
title: Adăugați o aplicație nouă
|
111
|
-
update:
|
112
|
-
error: A apărut o eroare la actualizarea acestei aplicații.
|
113
|
-
success: Aplicație actualizată cu succes.
|
114
53
|
organizations:
|
115
54
|
create:
|
116
55
|
error: A apărut o problemă la crearea unei noi organizații.
|
117
56
|
success: Organizație creată cu succes.
|
118
57
|
edit:
|
119
58
|
secondary_hosts_hint: Introduceți fiecare dintre ele într-o linie nouă
|
120
|
-
file_upload_settings:
|
121
|
-
content_types:
|
122
|
-
admin_hint: Aceste tipuri MIME sunt permise pentru secțiunea de administrare încărcare. Utilizatorii administratori ar trebui să fie conștienți de riscurile la încărcarea unor formate de document, astfel încât să vă puteți aștepta ca acestea să fie mai prudente cu încărcările de fișiere.
|
123
|
-
default_hint: Aceste tipuri MIME sunt permise implicit pentru toți utilizatorii.
|
124
|
-
intro_html: Adaugă metacaractere cu caracterul asterisc pentru tipurile MIME, ex. <code>image/*</code>.
|
125
|
-
title: Tipuri MIME permise
|
126
|
-
file_extensions:
|
127
|
-
admin_hint: Aceste extensii de fișiere sunt permise pentru secțiunea de administrare încărcare. Utilizatorii administratori ar trebui să fie conștienți de riscurile la încărcarea unor formate de document, astfel încât să vă puteți aștepta ca acestea să fie mai prudente cu încărcările de fișiere.
|
128
|
-
default_hint: Aceste extensii de fișiere sunt permise implicit pentru toți utilizatorii.
|
129
|
-
image_hint: Aceste extensii de fișiere sunt permise pentru orice fel de încărcare de imagini.
|
130
|
-
title: Extensii de fișiere permise
|
131
|
-
file_sizes:
|
132
|
-
avatar_hint: Megabytes (MB). Această limită de dimensiune a fișierului este utilizată pentru încărcarea imaginii avatarului.
|
133
|
-
default_hint: Megabytes (MB). Această limită de dimensiune a fișierului este cea implicită utilizată pentru toate încărcările fișierelor, cu excepția cazului în care se specifică altfel.
|
134
|
-
title: Mărimea maximă a fișierului
|
135
|
-
intro: |
|
136
|
-
Te rugăm să fii extrem de prudent când iei în considerare schimbarea acestor setări. Cu cât permiți, cu atât mai bine.
|
137
|
-
Permițând anumite extensii de fișiere sau tipuri MIME poate expune utilizatorii de sistem la riscuri de securitate și poate afecta accesibilitatea site-ului.
|
138
59
|
index:
|
139
60
|
title: Organizații
|
140
61
|
new:
|
data/config/locales/sv.yml
CHANGED
@@ -7,13 +7,6 @@ sv:
|
|
7
7
|
organization_name: Organisation
|
8
8
|
organization_url: Organisationens hemsida
|
9
9
|
redirect_uri: Omdirigerings-URI
|
10
|
-
organization:
|
11
|
-
address: SMTP-värdnamn
|
12
|
-
from_email: Från (e-postadress)
|
13
|
-
from_label: Från (namn)
|
14
|
-
password: Lösenord
|
15
|
-
port: Port
|
16
|
-
user_name: Användarnamn
|
17
10
|
errors:
|
18
11
|
models:
|
19
12
|
oauth_application:
|
@@ -105,9 +98,6 @@ sv:
|
|
105
98
|
success: Organisationen har skapats.
|
106
99
|
edit:
|
107
100
|
secondary_hosts_hint: Ange var och en av dem på en ny rad
|
108
|
-
file_upload_settings:
|
109
|
-
file_sizes:
|
110
|
-
title: Max filstorlekar
|
111
101
|
index:
|
112
102
|
title: Organisationer
|
113
103
|
new:
|
@@ -133,8 +123,6 @@ sv:
|
|
133
123
|
api_key: API-nyckel
|
134
124
|
api_secret: API-hemlighet
|
135
125
|
smtp_settings:
|
136
|
-
fieldsets:
|
137
|
-
sender: Avsändare
|
138
126
|
placeholder:
|
139
127
|
from_label: din-organisation-namn
|
140
128
|
update:
|
data/db/seeds.rb
CHANGED
@@ -3,9 +3,11 @@
|
|
3
3
|
if !Rails.env.production? || ENV["SEED"]
|
4
4
|
print "Creating seeds for decidim-system...\n" unless Rails.env.test?
|
5
5
|
|
6
|
+
password = ENV["DECIDIM_SYSTEM_USER_PASSWORD"] || "decidim123456"
|
7
|
+
|
6
8
|
Decidim::System::Admin.find_or_initialize_by(email: "system@example.org").update!(
|
7
|
-
password:
|
8
|
-
password_confirmation:
|
9
|
+
password: password,
|
10
|
+
password_confirmation: password
|
9
11
|
)
|
10
12
|
|
11
13
|
Decidim::Organization.find_each do |organization|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-system
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-03-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: active_link_to
|
@@ -32,14 +32,14 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.
|
35
|
+
version: 0.24.0.rc1
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.
|
42
|
+
version: 0.24.0.rc1
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: devise
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,28 +88,28 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - "~>"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '4.
|
91
|
+
version: '4.4'
|
92
92
|
type: :runtime
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - "~>"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '4.
|
98
|
+
version: '4.4'
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: sassc
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - "~>"
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 2.
|
105
|
+
version: 2.4.0
|
106
106
|
type: :runtime
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - "~>"
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 2.
|
112
|
+
version: 2.4.0
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: sassc-rails
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,14 +130,14 @@ dependencies:
|
|
130
130
|
requirements:
|
131
131
|
- - '='
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.
|
133
|
+
version: 0.24.0.rc1
|
134
134
|
type: :development
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
138
|
- - '='
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version: 0.
|
140
|
+
version: 0.24.0.rc1
|
141
141
|
description: System administration to create new organization in an installation.
|
142
142
|
email:
|
143
143
|
- josepjaume@gmail.com
|
@@ -307,14 +307,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
307
307
|
requirements:
|
308
308
|
- - ">="
|
309
309
|
- !ruby/object:Gem::Version
|
310
|
-
version: '2.
|
310
|
+
version: '2.7'
|
311
311
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
312
312
|
requirements:
|
313
|
-
- - "
|
313
|
+
- - ">"
|
314
314
|
- !ruby/object:Gem::Version
|
315
|
-
version:
|
315
|
+
version: 1.3.1
|
316
316
|
requirements: []
|
317
|
-
rubygems_version: 3.
|
317
|
+
rubygems_version: 3.1.2
|
318
318
|
signing_key:
|
319
319
|
specification_version: 4
|
320
320
|
summary: Decidim system administration
|