decidim-dev 0.23.0 → 0.23.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/mailers/decidim/dummy_resources/dummy_resource_mailer.rb +17 -0
- data/config/locales/de.yml +1 -1
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +25 -9
- data/lib/decidim/dev/assets/5000x5000.png +0 -0
- data/lib/decidim/dev/test/rspec_support/component.rb +7 -4
- data/lib/decidim/dev/version.rb +1 -1
- metadata +11 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecb3261f5bfbdf2b3ae8f2eeccff8ce069700f93a3b89cf9b98f9359ae2df57d
|
4
|
+
data.tar.gz: 3c516f95733314f61cfb17c944097bfe1efb09ba46015b6b14b9cb77fb47386a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99d70a8dbbdaf600c39d490ad65c22e119677de01e7f5d97739c1118fc7624d2ea5d984e430c4892dba336bc05c1e3f1a1abe7fe25ddfdc03614bb8d91641a46
|
7
|
+
data.tar.gz: 2c54dd86c62a9e9acc749fa844b1b319ea141f481411c9c30c2f990d7b144917db791dec782dfa244990d0ed25f0172363acbbb7f448868b81552a17859f9919
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module DummyResources
|
5
|
+
class DummyResourceMailer < ApplicationMailer
|
6
|
+
def send_email(user, organization)
|
7
|
+
@user = user
|
8
|
+
@organization = organization
|
9
|
+
|
10
|
+
mail(to: "#{user.name} <#{user.email}>") do |format|
|
11
|
+
format.text { "This is the test" }
|
12
|
+
format.html { "<p>This is a mail </p>" }
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/config/locales/de.yml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
si:
|
@@ -0,0 +1 @@
|
|
1
|
+
sw:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -2,12 +2,28 @@ tr:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
dummy_resource:
|
5
|
-
created_at:
|
5
|
+
created_at: Oluşturuldu
|
6
|
+
decidim_scope_id: Kapsam
|
6
7
|
field: Benim alanım
|
7
8
|
start_date: Başlangıç tarihi
|
8
9
|
title: Başlık
|
9
|
-
|
10
|
+
translatable_text: Çeviri metni
|
11
|
+
updated_at: Güncellendi
|
10
12
|
decidim:
|
13
|
+
components:
|
14
|
+
dummy:
|
15
|
+
settings:
|
16
|
+
global:
|
17
|
+
readonly_attribute: Salt okunur özniteliği
|
18
|
+
test: Test
|
19
|
+
test_choices:
|
20
|
+
a: Seçenek
|
21
|
+
b: Seçim
|
22
|
+
c: Seçenek
|
23
|
+
step:
|
24
|
+
endorsements_blocked: Onaylar engellendi
|
25
|
+
endorsements_enabled: Onaylar etkinleştirildi
|
26
|
+
readonly_step_attribute: Salt okunur özniteliği
|
11
27
|
dummy:
|
12
28
|
admin:
|
13
29
|
exports:
|
@@ -27,14 +43,14 @@ tr:
|
|
27
43
|
pages:
|
28
44
|
home:
|
29
45
|
statistics:
|
30
|
-
bar:
|
31
|
-
dummies_count_high:
|
32
|
-
dummies_count_medium:
|
33
|
-
foo:
|
46
|
+
bar: Çubuk
|
47
|
+
dummies_count_high: Çok sahte
|
48
|
+
dummies_count_medium: Orta sahte
|
49
|
+
foo: Sahte değişken
|
34
50
|
participatory_processes:
|
35
51
|
statistics:
|
36
|
-
dummies_count_high:
|
37
|
-
dummies_count_medium:
|
52
|
+
dummies_count_high: Çok sahte
|
53
|
+
dummies_count_medium: Orta sahte
|
38
54
|
resource_links:
|
39
55
|
test_link:
|
40
|
-
dummy_resource_dummy: İlgili
|
56
|
+
dummy_resource_dummy: İlgili sahte konu
|
Binary file
|
@@ -106,10 +106,13 @@ module Decidim
|
|
106
106
|
end
|
107
107
|
|
108
108
|
def self.newsletter_participant_ids(component)
|
109
|
-
Decidim::DummyResources::DummyResource.where(component: component)
|
110
|
-
|
111
|
-
|
112
|
-
|
109
|
+
authors_ids = Decidim::DummyResources::DummyResource.where(component: component)
|
110
|
+
.where(decidim_author_type: Decidim::UserBaseEntity.name)
|
111
|
+
.where.not(author: nil)
|
112
|
+
.group(:decidim_author_id)
|
113
|
+
.pluck(:decidim_author_id)
|
114
|
+
commentators_ids = Decidim::Comments::Comment.user_commentators_ids_in(Decidim::DummyResources::DummyResource.where(component: component))
|
115
|
+
(authors_ids + commentators_ids).flatten.compact.uniq
|
113
116
|
end
|
114
117
|
end
|
115
118
|
|
data/lib/decidim/dev/version.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-dev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.23.
|
4
|
+
version: 0.23.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
8
8
|
- Marc Riera Casals
|
9
9
|
- Oriol Gual Oliva
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-03-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: capybara
|
@@ -32,14 +32,14 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.23.
|
35
|
+
version: 0.23.4
|
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.23.
|
42
|
+
version: 0.23.4
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: factory_bot_rails
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -378,6 +378,7 @@ files:
|
|
378
378
|
- app/commands/decidim/dummy_resources/create_dummy_resource.rb
|
379
379
|
- app/controllers/decidim/dummy_resources/dummy_resources_controller.rb
|
380
380
|
- app/forms/decidim/dummy_resources/dummy_resource_form.rb
|
381
|
+
- app/mailers/decidim/dummy_resources/dummy_resource_mailer.rb
|
381
382
|
- app/views/decidim/dummy_resource/_linked_dummys.html.erb
|
382
383
|
- app/views/decidim/dummy_resources/dummy_resources/foo.html.erb
|
383
384
|
- app/views/decidim/dummy_resources/dummy_resources/show.html.erb
|
@@ -434,12 +435,14 @@ files:
|
|
434
435
|
- config/locales/pt.yml
|
435
436
|
- config/locales/ro-RO.yml
|
436
437
|
- config/locales/ru.yml
|
438
|
+
- config/locales/si-LK.yml
|
437
439
|
- config/locales/sk-SK.yml
|
438
440
|
- config/locales/sk.yml
|
439
441
|
- config/locales/sl.yml
|
440
442
|
- config/locales/so-SO.yml
|
441
443
|
- config/locales/sr-CS.yml
|
442
444
|
- config/locales/sv.yml
|
445
|
+
- config/locales/sw-KE.yml
|
443
446
|
- config/locales/ti-ER.yml
|
444
447
|
- config/locales/tr-TR.yml
|
445
448
|
- config/locales/uk.yml
|
@@ -448,6 +451,7 @@ files:
|
|
448
451
|
- config/locales/zh-CN.yml
|
449
452
|
- config/locales/zh-TW.yml
|
450
453
|
- lib/decidim/dev.rb
|
454
|
+
- lib/decidim/dev/assets/5000x5000.png
|
451
455
|
- lib/decidim/dev/assets/Exampledocument.pdf
|
452
456
|
- lib/decidim/dev/assets/assemblies.json
|
453
457
|
- lib/decidim/dev/assets/assemblies_with_null.json
|
@@ -517,7 +521,7 @@ homepage: https://github.com/decidim/decidim
|
|
517
521
|
licenses:
|
518
522
|
- AGPL-3.0
|
519
523
|
metadata: {}
|
520
|
-
post_install_message:
|
524
|
+
post_install_message:
|
521
525
|
rdoc_options: []
|
522
526
|
require_paths:
|
523
527
|
- lib
|
@@ -533,7 +537,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
533
537
|
version: '0'
|
534
538
|
requirements: []
|
535
539
|
rubygems_version: 3.0.3
|
536
|
-
signing_key:
|
540
|
+
signing_key:
|
537
541
|
specification_version: 4
|
538
542
|
summary: Decidim dev tools
|
539
543
|
test_files: []
|