File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## [ Unreleased] ( https://github.com/decidim/decidim/tree/HEAD )
44
5- ** Upgrade notes** :
6-
7- This version has breaking changes, ` Decidim::Feature ` has been renamed to ` Decidim::Component ` ,
8- and also everything related to it (controllers, views, etc.). If you have customised some
9- controller or added a new module you need to rename ` feature ` to ` component ` .
10-
11- With the addition of the new step "Complete" to the proposal creation wizard,
12- administrators should keep in mind updating the help texts for each step.
13-
14- Authorizations workflows now use a settings manifest to define their options.
15- That means site admins will no longer need to introduce raw json to define
16- authorization options. If you were previously using an authorization workflow
17- with options, you'll need to update the workflow manifest to define them. As an
18- example, if you were filtering an authorization only to users in the 08001
19- postal code via an authorization option (by introducing `{ "postal_code" :
20- "08001" }` in the options field of a participatory space action permissions),
21- you'll need to define it in the workflow manifest as:
22-
23- ``` ruby
24- Decidim ::Verifications .register_workflow(:my_handler ) do |workflow |
25- # ... stuff ...
26-
27- workflow.options do |options |
28- options.attribute :postal_code , type: :string , required: false
29- end
30- end
31- ```
32-
335** Added** :
346
357- ** decidim-meetings** : Add Minutes entity to manage Minutes. [ \# 3213] ( https://github.com/decidim/decidim/pull/3213 )
You can’t perform that action at this time.
0 commit comments