nuntius 1.3.18 → 1.3.20
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 +4 -1
- data/app/tables/nuntius/campaigns_table.rb +1 -1
- data/app/tables/nuntius/layouts_table.rb +1 -1
- data/app/tables/nuntius/templates_table.rb +2 -2
- data/app/views/nuntius/admin/messages/show.html.slim +1 -1
- data/config/locales/nl.yml +1 -0
- data/lib/nuntius/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c35384ba46c7a00cccf82ae49b6ecf09e5e6c2439196ba5cd03d6d508a4ff1d
|
4
|
+
data.tar.gz: bf0e4bde69a856f82f37c205d15f3685d4da3eb612cd2eaf582642bdd388574a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ddc8ce1306965ac2306ca8ab1d7e258478868d669b34b9eb997cb6dee6f747f0e06ac5149b51afb02dcdc3bb3f50eecefe0f3dfe035e771089ade69241537098
|
7
|
+
data.tar.gz: f64fc4ad0d78a90f8c1cac8fb99106322af707387d10d0b51af82d1879a0ef77a3fb4f7c46414c4a9551f77cb473e1cb3e04d8f8b3d26ecf1342b2ad019f0e70
|
data/README.md
CHANGED
@@ -60,7 +60,10 @@ Additionally you need to define an extension of the Nuntius::BaseMessenger for t
|
|
60
60
|
```ruby
|
61
61
|
class CarMessenger < Nuntius::BaseMessenger
|
62
62
|
def your_event(car, params)
|
63
|
-
# your optional logic here
|
63
|
+
# your optional logic here, you could add attachments here
|
64
|
+
pdf = ApplicationController.renderer.new(http_host: object.account.hostname, https: true).render(template: "commercial_invoice/show", formats: [:pdf], assigns: {order: object})
|
65
|
+
|
66
|
+
attachments << {content: StringIO.new(pdf), content_type: "application/pdf", filename: "commercial_invoice.pdf"}
|
64
67
|
end
|
65
68
|
end
|
66
69
|
```
|
@@ -24,7 +24,7 @@ module Nuntius
|
|
24
24
|
# FIXME: next unless campaign.can_publish?
|
25
25
|
show ->(campaign) { campaign.transport != "sms" && campaign.can_publish? }
|
26
26
|
link { |campaign| campaign.can_publish? ? nuntius.publish_admin_campaign_path(campaign) : nil }
|
27
|
-
icon "fa-
|
27
|
+
icon "fa-solid fa-paper-plane"
|
28
28
|
link_attributes data: {"turbo-confirm": "Are you sure you want to send out this campaign?", "turbo-method": :post}
|
29
29
|
end
|
30
30
|
|
@@ -16,7 +16,7 @@ module Nuntius
|
|
16
16
|
|
17
17
|
action :delete do
|
18
18
|
link { |layout| nuntius.admin_layout_url(layout) }
|
19
|
-
icon "fa-
|
19
|
+
icon "fa-solid fa-trash"
|
20
20
|
link_attributes data: {"turbo-confirm": "Are you sure you want to delete the layout?", "turbo-method": :delete}
|
21
21
|
end
|
22
22
|
|
@@ -31,7 +31,7 @@ module Nuntius
|
|
31
31
|
html do |template|
|
32
32
|
color = Nuntius.config.flow_color(template.id)&.light_color || "green"
|
33
33
|
content_tag(:span, class: "traffic-signal-#{color.downcase}") do
|
34
|
-
content_tag(:i, nil, class: "fa-
|
34
|
+
content_tag(:i, nil, class: "fa-solid fa-circle fa-xl")
|
35
35
|
end
|
36
36
|
end
|
37
37
|
end
|
@@ -39,7 +39,7 @@ module Nuntius
|
|
39
39
|
|
40
40
|
action :delete do
|
41
41
|
link { |template| nuntius.admin_template_path(template) }
|
42
|
-
icon "fa-
|
42
|
+
icon "fa-solid fa-trash"
|
43
43
|
link_attributes data: {"turbo-confirm": "Are you sure you want to delete the template?", "turbo-method": :delete}
|
44
44
|
end
|
45
45
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
= info.with_item :attachments, class: "sm:col-span-4"
|
12
12
|
- @message.attachments.each do |attachment|
|
13
13
|
= link_to(main_app.rails_blob_path(attachment, disposition: "attachment"), title: attachment.filename) do
|
14
|
-
i.fa-
|
14
|
+
i.fa-solid.fa-paperclip
|
15
15
|
span=attachment.filename
|
16
16
|
br
|
17
17
|
- if @message.transport == 'sms'
|
data/config/locales/nl.yml
CHANGED
data/lib/nuntius/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nuntius
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apnotic
|
@@ -607,7 +607,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
607
607
|
- !ruby/object:Gem::Version
|
608
608
|
version: '0'
|
609
609
|
requirements: []
|
610
|
-
rubygems_version: 3.
|
610
|
+
rubygems_version: 3.4.10
|
611
611
|
signing_key:
|
612
612
|
specification_version: 4
|
613
613
|
summary: Messaging and notification for Ruby on Rails
|