decidim-system 0.31.0.rc1 → 0.31.0.rc2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05fe2090e59a09f9d9daa1fc7c3d8b2d99fb7c3b449c2f74ce37ce0ee1a48e8e
4
- data.tar.gz: bfedfc1597c406c88e5f4e453467c7fcec963bd9e65b5212f3158526560ad9e3
3
+ metadata.gz: '0559fca04be997629c71911d2ad50470e8ee7233beb647f39c6af38fb2839b49'
4
+ data.tar.gz: 2d34e508bb3a1a300fef87b730e2106eda6cdd82b42a00ca43021769e0e8d44e
5
5
  SHA512:
6
- metadata.gz: 117e8c702ae168d93f319eab9eaa2825e8234d94893659ab0db0cf07fa39482a5d3f984eb161ffa95ad2dd563ee9a522d58dad865ca7da1f167a517a015f5203
7
- data.tar.gz: 2f431ec56287f729ebae1019c6bda1aadaf1ebf0a856ec7e8bd31ea41d75c2d33d3a3afa0edf48f04e524cde3bc59442d87eaef3e4036c5c59f45e01caa9e23f
6
+ metadata.gz: e6fa6b7f116010600637cc221b67b04c0256004189dc047bb2af121318251b914350465ea87307282cb65cbb4505a985ade439993282641d81e5396bd044fe2c
7
+ data.tar.gz: 02d63e256bb5a0c6937bf53859c83796abb0a39a85d534a4af80e8e97651d49697f231c4185da6416810adbe0a0fadbc3f82277567bca1284272e327a7c0980f
@@ -29,7 +29,7 @@ module Decidim
29
29
  @organization = nil
30
30
  invite_form = nil
31
31
 
32
- transaction do
32
+ with_events(with_transaction: true) do
33
33
  @organization = create_organization
34
34
  CreateDefaultPages.call(@organization)
35
35
  CreateDefaultHelpPages.call(@organization)
@@ -51,6 +51,10 @@ module Decidim
51
51
 
52
52
  attr_reader :form
53
53
 
54
+ def event_arguments
55
+ { organization: @organization }
56
+ end
57
+
54
58
  def create_organization
55
59
  Decidim::Organization.create!(
56
60
  name: { form.default_locale => form.name },
@@ -88,6 +88,12 @@ cs:
88
88
  refresh:
89
89
  error: Něco se pokazilo! Zkuste to prosím znovu později.
90
90
  success: Tajný klíč byl úspěšně obnoven. Tajný klíč pro uživatele je viditelný pouze po vytvoření. Zkopírujte jej a uložte jej bezpečně před opuštěním této stránky!
91
+ api_users:
92
+ index:
93
+ manage: Správa uživatelů API
94
+ new:
95
+ select_organization: Vyberte vaši organizaci
96
+ title: Vytvořit nového uživatele API
91
97
  dashboard:
92
98
  show:
93
99
  admins: Administrátoři
@@ -116,6 +122,7 @@ cs:
116
122
  sign_up: Vytvořit účet
117
123
  menu:
118
124
  admins: Správci
125
+ api_credentials: API pověření
119
126
  dashboard: Ovládací panel
120
127
  oauth_applications: Žádosti OAuth
121
128
  organizations: Organizace
@@ -128,9 +135,11 @@ cs:
128
135
  email_uniqueness: jiný admin se stejnou e-mailovou adresou již existuje
129
136
  api_user:
130
137
  fields:
138
+ created_at: Vytvořeno v
131
139
  key: Klíč
132
140
  name: Název
133
141
  organization: Organizace
142
+ secret: Tajné
134
143
  validations:
135
144
  name_uniqueness: Uživatel API s tímto jménem již existuje.
136
145
  oauth_application:
@@ -160,6 +169,9 @@ cs:
160
169
  title: Upravit žádost
161
170
  form:
162
171
  application_type:
172
+ confidential:
173
+ explanation: Aplikace, které se mohou bezpečně autentizovat s autorizačním serverem, například udržovat registrované klienty zabezpečené. Obvykle aplikace běžící na serveru, kde je uložen tajný kód klienta.
174
+ name: Důvěrné
163
175
  public:
164
176
  name: Veřejné
165
177
  select_organization: Vybrat organizaci
@@ -289,7 +289,7 @@ en:
289
289
  intro: |
290
290
  Please be extra cautious when considering to change these settings. The less you allow, the better.
291
291
  Allowing specific file extensions or MIME types can expose the system users to security risks and it can also affect the accessibility of the website.
292
- header_snippets_help_html: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section. If the code interacts with external APIs or does not comply with the application security guidelines, it will be necessary to change the Content Security Policy. Read more about <a href="https://docs.decidim.org/develop/en/customize/content_security_policy">on the documentation site</a> .
292
+ header_snippets_help_html: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section. If the code interacts with external APIs or does not comply with the application security guidelines, it will be necessary to change the Content Security Policy. Read more about <a href="https://docs.decidim.org/en/develop/customize/content_security_policy">on the documentation site</a> .
293
293
  index:
294
294
  title: Organizations
295
295
  new:
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-system version.
5
5
  module System
6
6
  def self.version
7
- "0.31.0.rc1"
7
+ "0.31.0.rc2"
8
8
  end
9
9
  end
10
10
  end
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.31.0.rc1
4
+ version: 0.31.0.rc2
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: 2025-09-25 00:00:00.000000000 Z
13
+ date: 2025-10-28 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.31.0.rc1
35
+ version: 0.31.0.rc2
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.31.0.rc1
42
+ version: 0.31.0.rc2
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: devise
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -94,14 +94,14 @@ dependencies:
94
94
  requirements:
95
95
  - - '='
96
96
  - !ruby/object:Gem::Version
97
- version: 0.31.0.rc1
97
+ version: 0.31.0.rc2
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - '='
103
103
  - !ruby/object:Gem::Version
104
- version: 0.31.0.rc1
104
+ version: 0.31.0.rc2
105
105
  description: System administration to create new organization in an installation.
106
106
  email:
107
107
  - josepjaume@gmail.com