decidim-admin 0.28.6 → 0.29.0.rc1
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 +4 -4
- data/README.md +13 -0
- data/app/cells/decidim/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/block_user.rb +0 -1
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +4 -4
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -43
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +79 -4
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/paginable.rb +20 -0
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +2 -1
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +1 -1
- data/app/controllers/decidim/admin/block_user_controller.rb +1 -1
- data/app/controllers/decidim/admin/categories_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/conflicts_controller.rb +6 -14
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/impersonations_controller.rb +0 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +6 -7
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +2 -2
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/help_section_form.rb +1 -1
- data/app/forms/decidim/admin/impersonate_user_form.rb +0 -5
- data/app/forms/decidim/admin/organization_appearance_form.rb +2 -5
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +4 -4
- data/app/forms/decidim/admin/static_page_form.rb +1 -2
- data/app/forms/decidim/admin/transfer_user_form.rb +0 -15
- data/app/helpers/decidim/admin/application_helper.rb +0 -13
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +19 -15
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/newsletters.js +9 -18
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_moderations.scss +0 -8
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -14
- data/app/queries/decidim/admin/newsletter_recipients.rb +5 -9
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/block_user/new.html.erb +1 -1
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/components/index.html.erb +1 -5
- data/app/views/decidim/admin/conflicts/edit.html.erb +11 -21
- data/app/views/decidim/admin/conflicts/index.html.erb +6 -29
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +6 -6
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +5 -7
- data/app/views/decidim/admin/imports/new.html.erb +6 -7
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +4 -4
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +3 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +6 -7
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/organization_appearance/form/_minimap.html.erb +3 -3
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -1
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +6 -68
- data/config/locales/bg.yml +17 -14
- data/config/locales/ca.yml +23 -27
- data/config/locales/cs.yml +16 -25
- data/config/locales/de.yml +24 -28
- data/config/locales/el.yml +2 -15
- data/config/locales/en.yml +15 -19
- data/config/locales/eo.yml +0 -1
- data/config/locales/es-MX.yml +19 -23
- data/config/locales/es-PY.yml +19 -23
- data/config/locales/es.yml +19 -23
- data/config/locales/eu.yml +162 -178
- data/config/locales/fi-plain.yml +22 -26
- data/config/locales/fi.yml +43 -47
- data/config/locales/fr-CA.yml +18 -22
- data/config/locales/fr.yml +16 -20
- data/config/locales/ga-IE.yml +6 -4
- data/config/locales/gl.yml +3 -10
- data/config/locales/he-IL.yml +0 -6
- data/config/locales/hu.yml +14 -15
- data/config/locales/id-ID.yml +5 -12
- data/config/locales/is-IS.yml +6 -16
- data/config/locales/it.yml +6 -180
- data/config/locales/ja.yml +22 -26
- data/config/locales/kaa.yml +3 -8
- data/config/locales/ko.yml +3 -16
- data/config/locales/lb.yml +7 -17
- data/config/locales/lt.yml +0 -14
- data/config/locales/lv.yml +4 -9
- data/config/locales/nl.yml +4 -14
- data/config/locales/no.yml +3 -13
- data/config/locales/pl.yml +18 -13
- data/config/locales/pt-BR.yml +10 -14
- data/config/locales/pt.yml +4 -18
- data/config/locales/ro-RO.yml +8 -27
- data/config/locales/ru.yml +8 -11
- data/config/locales/sk.yml +7 -10
- data/config/locales/sl.yml +2 -7
- data/config/locales/sq-AL.yml +6 -16
- data/config/locales/sr-CS.yml +5 -9
- data/config/locales/sv.yml +211 -366
- data/config/locales/th-TH.yml +0 -17
- data/config/locales/tr-TR.yml +8 -11
- data/config/locales/uk.yml +7 -8
- data/config/locales/zh-CN.yml +10 -6
- data/config/locales/zh-TW.yml +0 -13
- data/config/routes.rb +2 -2
- data/decidim-admin.gemspec +2 -2
- data/lib/decidim/admin/engine.rb +0 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +0 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +52 -28
- data/lib/decidim/admin/test/manage_categories_examples.rb +13 -13
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +4 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +22 -22
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +15 -0
- metadata +28 -28
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/controllers/concerns/decidim/admin/verification_conflicts/filterable.rb +0 -31
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -529
- data/config/locales/ca-IT.yml +0 -1153
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/th-TH.yml
CHANGED
@@ -97,20 +97,3 @@ th:
|
|
97
97
|
success: ทำลายพื้นที่สำเร็จ
|
98
98
|
edit:
|
99
99
|
title: แก้ไขพื้นที่
|
100
|
-
categories:
|
101
|
-
edit:
|
102
|
-
update: อัปเดต
|
103
|
-
filters:
|
104
|
-
scope_id_eq:
|
105
|
-
label: ขอบเขต
|
106
|
-
models:
|
107
|
-
user_group:
|
108
|
-
fields:
|
109
|
-
name: ชื่อ
|
110
|
-
organization_external_domain_whitelist:
|
111
|
-
edit:
|
112
|
-
update: อัปเดต
|
113
|
-
resources:
|
114
|
-
index:
|
115
|
-
headers:
|
116
|
-
scope: ขอบเขต
|
data/config/locales/tr-TR.yml
CHANGED
@@ -427,7 +427,7 @@ tr:
|
|
427
427
|
plural: Çoğul
|
428
428
|
share_token:
|
429
429
|
fields:
|
430
|
-
created_at:
|
430
|
+
created_at: Oluşturulma tarihi
|
431
431
|
expires_at: Süre sonu
|
432
432
|
last_used_at: Son kullanıldığı zaman
|
433
433
|
times_used: Kullanım Sayısı
|
@@ -452,8 +452,7 @@ tr:
|
|
452
452
|
actions: Eylemler
|
453
453
|
created_at: Düzenlendi
|
454
454
|
document_number: Belge Numarası
|
455
|
-
name:
|
456
|
-
nickname: Takma ad
|
455
|
+
name: isim
|
457
456
|
phone: Telefon
|
458
457
|
state: Belirtmek, bildirmek
|
459
458
|
users_count: Kullanıcılar
|
@@ -533,7 +532,7 @@ tr:
|
|
533
532
|
confirm_deliver: Bu bülteni sunmak istediğinizden emin misiniz? Bu işlem geri alınamaz.
|
534
533
|
deliver: Bülten sunun
|
535
534
|
followers_help: Listede seçili herhangi bir katılımcı süreci takip eden bütün onaylanmış kullanıcılara haber bülteni gönderir.
|
536
|
-
none:
|
535
|
+
none: Hiçbiri
|
537
536
|
participants_help: Listede seçili herhangi bir katılımcı sürece katılmış olan bütün onaylanmış kullanıcılara haber bülteni gönderir.
|
538
537
|
recipients_count: Bu haber bülteni <strong id='recipients_count'>%{count}</strong> kullanıcıya gönderilecektir.
|
539
538
|
scopes_help: Hesaplarındaki 'İlgi Alanlarım' ayarlarında etkinleştirilmiş herhangi bir seçili kapsam bulunan kullanıcılara haber bülteni gönderir.
|
@@ -604,9 +603,6 @@ tr:
|
|
604
603
|
layout_appearance_title: Düzen görünümünü düzenle
|
605
604
|
preview: Önizleme
|
606
605
|
omnipresent_banner_appearance_title: Her yerde bulunan banner'ı düzenle
|
607
|
-
organization_external_domain_whitelist:
|
608
|
-
edit:
|
609
|
-
update: Güncelleştirme
|
610
606
|
participatory_space_private_users:
|
611
607
|
create:
|
612
608
|
error: Bu katılımcı alan için özel bir kullanıcı eklenirken bir hata oluştu.
|
@@ -622,8 +618,6 @@ tr:
|
|
622
618
|
title: Yeni Katılımcı Uzay özel kullanıcısı.
|
623
619
|
participatory_space_private_users_csv_imports:
|
624
620
|
new:
|
625
|
-
csv_upload:
|
626
|
-
title: CSV dosyanızı yükleyin
|
627
621
|
upload: Yükle
|
628
622
|
resource_permissions:
|
629
623
|
edit:
|
@@ -720,7 +714,6 @@ tr:
|
|
720
714
|
areas: alanlar
|
721
715
|
authorization_workflows: Doğrulama yöntemleri
|
722
716
|
dashboard: Pano
|
723
|
-
edit_external_domains: Harici Güvenli Alan
|
724
717
|
edit_landing_page: Sayfa İçeriği
|
725
718
|
edit_organization_appearance: Ana Sayfayı Düzenleme
|
726
719
|
impersonatable_users: Yönetilebilir kullanıcılar
|
@@ -742,12 +735,16 @@ tr:
|
|
742
735
|
invalid: Bu kullanıcı grubunu doğrularken bir hata oluştu.
|
743
736
|
user_groups:
|
744
737
|
index:
|
738
|
+
state:
|
739
|
+
pending: kadar
|
740
|
+
rejected: Reddedilen
|
741
|
+
verified: Doğrulanmış
|
745
742
|
verify_via_csv: CSV ile doğrulayın
|
746
743
|
user_groups_csv_verifications:
|
747
744
|
new:
|
748
745
|
explanation: CSV dosyanızı yükleyin. Dosyanın ilk sütunundaki kullanıcı gruplarının resmi e-postalarının, başlıksız olarak olması gerekir. Sadece e-postalarını onaylayan ve CSV dosyasında görünen bir e-postaya sahip olan kullanıcı grupları doğrulanacaktır.
|
749
746
|
title: CSV dosyanızı yükleyin
|
750
|
-
upload:
|
747
|
+
upload: Yükleme
|
751
748
|
users:
|
752
749
|
create:
|
753
750
|
error: Bu kullanıcıyı davet ederken bir hata oluştu.
|
data/config/locales/uk.yml
CHANGED
@@ -326,9 +326,6 @@ uk:
|
|
326
326
|
fields:
|
327
327
|
name: Ім'я
|
328
328
|
plural: Множина
|
329
|
-
share_token:
|
330
|
-
fields:
|
331
|
-
created_at: 'Створено:'
|
332
329
|
static_page:
|
333
330
|
fields:
|
334
331
|
created_at: 'Створено:'
|
@@ -348,8 +345,7 @@ uk:
|
|
348
345
|
actions: Дії
|
349
346
|
created_at: 'Створено:'
|
350
347
|
document_number: Номер документа
|
351
|
-
name:
|
352
|
-
nickname: Псевдонім
|
348
|
+
name: Ім'я
|
353
349
|
phone: Телефон
|
354
350
|
state: Стан
|
355
351
|
users_count: Кількість учасників
|
@@ -429,9 +425,6 @@ uk:
|
|
429
425
|
images:
|
430
426
|
layout_appearance_title: Редагувати зовнішній вигляд шаблону
|
431
427
|
omnipresent_banner_appearance_title: Редагувати всюдисущий банер
|
432
|
-
organization_external_domain_whitelist:
|
433
|
-
edit:
|
434
|
-
update: Оновити
|
435
428
|
participatory_space_private_users:
|
436
429
|
create:
|
437
430
|
error: При спробі додати приватного учасника до цього простору співучасті сталася помилка.
|
@@ -506,6 +499,12 @@ uk:
|
|
506
499
|
invalid: При відхиленні цього гурту учасників сталася помилка.
|
507
500
|
verify:
|
508
501
|
invalid: При підтвердженні цього гурту учасників сталася помилка.
|
502
|
+
user_groups:
|
503
|
+
index:
|
504
|
+
state:
|
505
|
+
pending: Очікує на розгляд
|
506
|
+
rejected: Відхилено
|
507
|
+
verified: Перевірено
|
509
508
|
users:
|
510
509
|
create:
|
511
510
|
error: Під час запрошення цього учасника сталася помилка.
|
data/config/locales/zh-CN.yml
CHANGED
@@ -275,6 +275,8 @@ zh-CN:
|
|
275
275
|
values:
|
276
276
|
'false': 已发布
|
277
277
|
'true': 未发布
|
278
|
+
scope_id_eq:
|
279
|
+
label: 范围
|
278
280
|
search_label: 搜索
|
279
281
|
search_placeholder:
|
280
282
|
name_or_nickname_or_email_cont: 通过电子邮件、名称或昵称搜索 %{collection}。
|
@@ -421,7 +423,6 @@ zh-CN:
|
|
421
423
|
created_at: 创建于
|
422
424
|
document_number: 文档编号
|
423
425
|
name: 名称
|
424
|
-
nickname: 昵称
|
425
426
|
phone: 电话
|
426
427
|
state: 状态
|
427
428
|
users_count: 参与者数量
|
@@ -539,9 +540,6 @@ zh-CN:
|
|
539
540
|
layout_appearance_title: 编辑布局外观
|
540
541
|
preview: 预览
|
541
542
|
omnipresent_banner_appearance_title: Edit omnipresent banner
|
542
|
-
organization_external_domain_whitelist:
|
543
|
-
edit:
|
544
|
-
update: 更新
|
545
543
|
participatory_space_private_users:
|
546
544
|
create:
|
547
545
|
error: 在这种参与空间中添加私人参与者时出现了问题。
|
@@ -556,8 +554,6 @@ zh-CN:
|
|
556
554
|
title: 新的参与性空间活动私人参与者。
|
557
555
|
participatory_space_private_users_csv_imports:
|
558
556
|
new:
|
559
|
-
csv_upload:
|
560
|
-
title: 上传您的 CSV 文件
|
561
557
|
upload: 上传
|
562
558
|
resource_permissions:
|
563
559
|
edit:
|
@@ -565,6 +561,10 @@ zh-CN:
|
|
565
561
|
title: 编辑权限
|
566
562
|
update:
|
567
563
|
success: 权限更新成功。
|
564
|
+
resources:
|
565
|
+
index:
|
566
|
+
headers:
|
567
|
+
scope: 范围
|
568
568
|
scope_types:
|
569
569
|
create:
|
570
570
|
error: 创建新的范围类型时出现问题。
|
@@ -667,6 +667,10 @@ zh-CN:
|
|
667
667
|
invalid: 验证此组时出现问题。
|
668
668
|
user_groups:
|
669
669
|
index:
|
670
|
+
state:
|
671
|
+
pending: 待定
|
672
|
+
rejected: 已拒绝
|
673
|
+
verified: 已验证
|
670
674
|
verify_via_csv: 通过CSV验证
|
671
675
|
user_groups_csv_verifications:
|
672
676
|
new:
|
data/config/locales/zh-TW.yml
CHANGED
@@ -359,10 +359,6 @@ zh-TW:
|
|
359
359
|
title: 等待的操作
|
360
360
|
show:
|
361
361
|
view_more_logs: 檢視更多記錄
|
362
|
-
domain_whitelist:
|
363
|
-
update:
|
364
|
-
error: 網址白名單更新失敗
|
365
|
-
success: 網址白名單更新成功.
|
366
362
|
exports:
|
367
363
|
export_as: "%{name} 成為 %{export_format}"
|
368
364
|
formats:
|
@@ -429,7 +425,6 @@ zh-TW:
|
|
429
425
|
report_count_eq: 報告數量等於
|
430
426
|
reported_id_string_or_reported_content_cont: 按報告 Id 或內容搜索%{collection}。
|
431
427
|
title_cont: 按標題搜索%{collection}。
|
432
|
-
user_name_or_user_email_cont: 按名稱或電子郵件搜索%{collection}。
|
433
428
|
user_name_or_user_nickname_or_user_email_cont: 按電子郵件、姓名或暱稱搜索%{collection}。
|
434
429
|
state_eq:
|
435
430
|
label: 狀態
|
@@ -808,12 +803,6 @@ zh-TW:
|
|
808
803
|
layout_appearance_title: 編輯版面外觀
|
809
804
|
preview: 預覽
|
810
805
|
omnipresent_banner_appearance_title: 編輯無處不在的橫幅
|
811
|
-
organization_external_domain_whitelist:
|
812
|
-
edit:
|
813
|
-
update: 更新
|
814
|
-
form:
|
815
|
-
add: 新增到白名單
|
816
|
-
title: 外部域名白名單
|
817
806
|
participatory_space_private_users:
|
818
807
|
create:
|
819
808
|
error: 在此參與空間中添加私人參與者時出現問題。
|
@@ -832,8 +821,6 @@ zh-TW:
|
|
832
821
|
invalid: 讀取 CSV 檔案時發生問題。請確保您已按照指示進行操作。
|
833
822
|
success: CSV檔案上傳成功,我們正在發送邀請電子郵件給參與者。這可能需要一些時間。
|
834
823
|
new:
|
835
|
-
csv_upload:
|
836
|
-
title: 請上傳您的 CSV 檔案。
|
837
824
|
destroy:
|
838
825
|
button: 刪除所有私人參與者
|
839
826
|
confirm: 您確定要刪除所有私人參與者嗎?此操作無法撤銷,您將無法恢復它們。
|
data/config/routes.rb
CHANGED
@@ -7,7 +7,7 @@ Decidim::Admin::Engine.routes.draw do
|
|
7
7
|
resource :homepage, only: [:edit, :update], controller: "organization_homepage" do
|
8
8
|
resources :content_blocks, only: [:edit, :update, :destroy, :create], controller: "organization_homepage_content_blocks"
|
9
9
|
end
|
10
|
-
resource :
|
10
|
+
resource :external_domain_allowlist, only: [:edit, :update], controller: "organization_external_domain_allowlist"
|
11
11
|
|
12
12
|
member do
|
13
13
|
get :users
|
@@ -84,7 +84,7 @@ Decidim::Admin::Engine.routes.draw do
|
|
84
84
|
|
85
85
|
resources :newsletters, except: [:new, :create] do
|
86
86
|
member do
|
87
|
-
|
87
|
+
get :recipients_count
|
88
88
|
post :send_to_user
|
89
89
|
get :preview
|
90
90
|
get :select_recipients_to_deliver
|
data/decidim-admin.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.version = Decidim::Admin.version
|
11
11
|
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
|
12
12
|
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
|
13
|
-
s.license = "AGPL-3.0
|
13
|
+
s.license = "AGPL-3.0"
|
14
14
|
s.homepage = "https://decidim.org"
|
15
15
|
s.metadata = {
|
16
16
|
"bug_tracker_uri" => "https://github.com/decidim/decidim/issues",
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
"homepage_uri" => "https://decidim.org",
|
20
20
|
"source_code_uri" => "https://github.com/decidim/decidim"
|
21
21
|
}
|
22
|
-
s.required_ruby_version = "~> 3.
|
22
|
+
s.required_ruby_version = "~> 3.2.0"
|
23
23
|
|
24
24
|
s.name = "decidim-admin"
|
25
25
|
s.summary = "Decidim organization administration"
|
data/lib/decidim/admin/engine.rb
CHANGED
@@ -26,7 +26,6 @@ module Decidim
|
|
26
26
|
end
|
27
27
|
|
28
28
|
initializer "decidim_admin.register_icons" do |_app|
|
29
|
-
Decidim.icons.register(name: "lock-2-line", icon: "lock-2-line", category: "system", description: "Block user icon", engine: :admin)
|
30
29
|
Decidim.icons.register(name: "layout-masonry-line", icon: "layout-masonry-line", category: "system", description: "", engine: :admin)
|
31
30
|
Decidim.icons.register(name: "service-line", icon: "service-line", category: "system", description: "", engine: :admin)
|
32
31
|
Decidim.icons.register(name: "fullscreen-line", icon: "fullscreen-line", category: "system", description: "", engine: :admin)
|
@@ -12,7 +12,7 @@ module Decidim
|
|
12
12
|
# own creator or this default will be used.
|
13
13
|
class Creator
|
14
14
|
class << self
|
15
|
-
#
|
15
|
+
# Returns the resource class to be created with the provided data.
|
16
16
|
def resource_klass
|
17
17
|
raise NotImplementedError, "#{self.class.name} does not define resource class"
|
18
18
|
end
|
@@ -5,11 +5,11 @@ module Decidim
|
|
5
5
|
module Import
|
6
6
|
# A factory class providing easier way to create new importers.
|
7
7
|
class ImporterFactory
|
8
|
-
def self.build(file, mime_type, **
|
8
|
+
def self.build(file, mime_type, **)
|
9
9
|
reader = Readers.search_by_mime_type(mime_type)
|
10
10
|
raise NotImplementedError, "No reader implemented for mime type: #{mime_type}" if reader.nil?
|
11
11
|
|
12
|
-
Importer.new(file:, reader:, **
|
12
|
+
Importer.new(file:, reader:, **)
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
data/lib/decidim/admin/menu.rb
CHANGED
@@ -192,9 +192,9 @@ module Decidim
|
|
192
192
|
position: 1.6,
|
193
193
|
if: allowed_to?(:update, :help_sections)
|
194
194
|
|
195
|
-
menu.add_item :
|
196
|
-
I18n.t("menu.
|
197
|
-
decidim_admin.
|
195
|
+
menu.add_item :external_domain_allowlist,
|
196
|
+
I18n.t("menu.external_domain_allowlist", scope: "decidim.admin"),
|
197
|
+
decidim_admin.edit_organization_external_domain_allowlist_path,
|
198
198
|
icon_name: "computer-line",
|
199
199
|
position: 1.7,
|
200
200
|
if: allowed_to?(:update, :organization, organization: current_organization)
|
@@ -270,7 +270,7 @@ module Decidim
|
|
270
270
|
decidim/admin/scope_types
|
271
271
|
decidim/admin/areas decidim/admin/area_types
|
272
272
|
decidim/admin/help_sections
|
273
|
-
decidim/admin/
|
273
|
+
decidim/admin/organization_external_domain_allowlist
|
274
274
|
),
|
275
275
|
[]
|
276
276
|
],
|
@@ -25,10 +25,11 @@ module Decidim
|
|
25
25
|
form_params,
|
26
26
|
collection_for:
|
27
27
|
).with_context(
|
28
|
-
current_organization: organization
|
28
|
+
current_organization: organization,
|
29
|
+
current_user: user
|
29
30
|
)
|
30
31
|
end
|
31
|
-
let(:command) { described_class.new(form, collection_for
|
32
|
+
let(:command) { described_class.new(form, collection_for) }
|
32
33
|
|
33
34
|
describe "when the form is not valid" do
|
34
35
|
before do
|
@@ -22,10 +22,12 @@ module Decidim
|
|
22
22
|
form_params,
|
23
23
|
current_participatory_space: participatory_space
|
24
24
|
).with_context(
|
25
|
-
current_organization: organization
|
25
|
+
current_organization: organization,
|
26
|
+
current_participatory_space: participatory_space,
|
27
|
+
current_user: user
|
26
28
|
)
|
27
29
|
end
|
28
|
-
let(:command) { described_class.new(form
|
30
|
+
let(:command) { described_class.new(form) }
|
29
31
|
|
30
32
|
describe "when the form is not valid" do
|
31
33
|
before do
|
@@ -26,10 +26,11 @@ module Decidim
|
|
26
26
|
form_params,
|
27
27
|
collection_for:
|
28
28
|
).with_context(
|
29
|
-
current_organization: organization
|
29
|
+
current_organization: organization,
|
30
|
+
current_user: user
|
30
31
|
)
|
31
32
|
end
|
32
|
-
let(:command) { described_class.new(attachment_collection, form
|
33
|
+
let(:command) { described_class.new(attachment_collection, form) }
|
33
34
|
|
34
35
|
describe "when the form is not valid" do
|
35
36
|
before do
|
@@ -23,10 +23,11 @@ module Decidim
|
|
23
23
|
form_params,
|
24
24
|
current_participatory_space: participatory_space
|
25
25
|
).with_context(
|
26
|
-
current_organization: organization
|
26
|
+
current_organization: organization,
|
27
|
+
current_user: user
|
27
28
|
)
|
28
29
|
end
|
29
|
-
let(:command) { described_class.new(
|
30
|
+
let(:command) { described_class.new(form, category) }
|
30
31
|
|
31
32
|
describe "when the form is not valid" do
|
32
33
|
before do
|
@@ -11,13 +11,15 @@ shared_context "with filterable context" do
|
|
11
11
|
within(".filters__section") do
|
12
12
|
find_link("Filter").hover
|
13
13
|
find_link(options).hover
|
14
|
-
|
14
|
+
within ".submenu > .is-active > .submenu" do
|
15
|
+
click_on(filter)
|
16
|
+
end
|
15
17
|
end
|
16
18
|
end
|
17
19
|
|
18
20
|
def remove_applied_filter(filter)
|
19
21
|
within("[data-applied-filters-tags] .label", text: /#{filter}/i) do
|
20
|
-
|
22
|
+
click_on("Cancel")
|
21
23
|
end
|
22
24
|
end
|
23
25
|
|
@@ -50,7 +52,7 @@ shared_context "with filterable context" do
|
|
50
52
|
before { apply_filter(options, filter) }
|
51
53
|
|
52
54
|
it { expect(page).to have_content(in_filter) }
|
53
|
-
it { expect(page).
|
55
|
+
it { expect(page).to have_no_content(not_in_filter) }
|
54
56
|
|
55
57
|
it_behaves_like "searching by text" do
|
56
58
|
let(:text) { in_filter }
|
@@ -14,7 +14,7 @@ shared_examples "sortable participatory space user roles" do
|
|
14
14
|
let(:sort_by) { "name asc" }
|
15
15
|
|
16
16
|
it "displays the result" do
|
17
|
-
expect(page).
|
17
|
+
expect(page).to have_no_content(user.name)
|
18
18
|
end
|
19
19
|
end
|
20
20
|
end
|
@@ -32,7 +32,7 @@ shared_examples "sortable participatory space user roles" do
|
|
32
32
|
let(:sort_by) { "email asc" }
|
33
33
|
|
34
34
|
it "displays the result" do
|
35
|
-
expect(page).
|
35
|
+
expect(page).to have_no_content(user.name)
|
36
36
|
end
|
37
37
|
end
|
38
38
|
end
|
@@ -50,7 +50,7 @@ shared_examples "sortable participatory space user roles" do
|
|
50
50
|
let(:sort_by) { "last_sign_in_at asc" }
|
51
51
|
|
52
52
|
it "displays the result" do
|
53
|
-
expect(page).
|
53
|
+
expect(page).to have_no_content(user.name)
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
@@ -68,7 +68,7 @@ shared_examples "sortable participatory space user roles" do
|
|
68
68
|
let(:sort_by) { "invitation_accepted_at asc" }
|
69
69
|
|
70
70
|
it "displays the result" do
|
71
|
-
expect(page).
|
71
|
+
expect(page).to have_no_content(user.name)
|
72
72
|
end
|
73
73
|
end
|
74
74
|
end
|
@@ -86,7 +86,7 @@ shared_examples "sortable participatory space user roles" do
|
|
86
86
|
let(:sort_by) { "role asc" }
|
87
87
|
|
88
88
|
it "displays the result" do
|
89
|
-
expect(page).
|
89
|
+
expect(page).to have_no_content(user.name)
|
90
90
|
end
|
91
91
|
end
|
92
92
|
end
|
@@ -17,7 +17,7 @@ shared_examples "inviting participatory space admins" do |check_private_space: t
|
|
17
17
|
expect(page).to have_content("Categories")
|
18
18
|
expect(page).to have_content("Attachments")
|
19
19
|
expect(page).to have_content(space_admins_label)
|
20
|
-
expect(page).
|
20
|
+
expect(page).to have_no_content("Private participants") if participatory_space.respond_to?(:private_space)
|
21
21
|
expect(page).to have_content("Moderations")
|
22
22
|
end
|
23
23
|
end
|
@@ -16,16 +16,16 @@ shared_examples "manage attachment collections examples" do
|
|
16
16
|
|
17
17
|
it "can view an attachment collection details" do
|
18
18
|
within "#attachment_collections table" do
|
19
|
-
|
19
|
+
click_on "Edit"
|
20
20
|
end
|
21
21
|
|
22
|
-
expect(page).to
|
23
|
-
expect(page).to
|
24
|
-
expect(page).to
|
22
|
+
expect(page).to have_css("input#attachment_collection_name_en[value='#{translated(attachment_collection.name, locale: :en)}']")
|
23
|
+
expect(page).to have_css("input#attachment_collection_weight[value='#{attachment_collection.weight}']")
|
24
|
+
expect(page).to have_css("input#attachment_collection_description_en[value='#{translated(attachment_collection.description, locale: :en)}']")
|
25
25
|
end
|
26
26
|
|
27
27
|
it "can add attachment collections to a process" do
|
28
|
-
|
28
|
+
click_on "New attachment folder"
|
29
29
|
|
30
30
|
within ".new_attachment_collection" do
|
31
31
|
fill_in_i18n(
|
@@ -55,8 +55,8 @@ shared_examples "manage attachment collections examples" do
|
|
55
55
|
|
56
56
|
it "can update an attachment collection" do
|
57
57
|
within "#attachment_collections" do
|
58
|
-
within
|
59
|
-
|
58
|
+
within "tr", text: translated(attachment_collection.name) do
|
59
|
+
click_on "Edit"
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
@@ -89,14 +89,14 @@ shared_examples "manage attachment collections examples" do
|
|
89
89
|
end
|
90
90
|
|
91
91
|
it "can delete the attachment collection" do
|
92
|
-
within
|
93
|
-
accept_confirm {
|
92
|
+
within "tr", text: translated(attachment_collection2.name) do
|
93
|
+
accept_confirm { click_on "Delete" }
|
94
94
|
end
|
95
95
|
|
96
96
|
expect(page).to have_admin_callout("successfully")
|
97
97
|
|
98
98
|
within "#attachment_collections table" do
|
99
|
-
expect(page).
|
99
|
+
expect(page).to have_no_content(translated(attachment_collection2.name))
|
100
100
|
end
|
101
101
|
end
|
102
102
|
end
|
@@ -109,8 +109,8 @@ shared_examples "manage attachment collections examples" do
|
|
109
109
|
end
|
110
110
|
|
111
111
|
it "cannot delete it" do
|
112
|
-
within
|
113
|
-
expect(page).
|
112
|
+
within "tr", text: translated(attachment_collection.name) do
|
113
|
+
expect(page).to have_no_css("a.action-icon--remove")
|
114
114
|
end
|
115
115
|
end
|
116
116
|
end
|