notifiable-sender 0.7.0 → 0.7.1
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/lib/notifiable/sender.rb +2 -2
- data/lib/notifiable/sender/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3d073a2ee72a393ec5b5eaa4dee362332f228a7
|
4
|
+
data.tar.gz: c7ad0fae2823b9065a1905789218a527253c076d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b63ea1f2d45b4e8c6e5fe0d2f11ade66db6cd8b7cf48db460c0dc37547477b5807baae75a94cfc03e8dee3c72aab529126d536a2385effdd908aec4864b39ac7
|
7
|
+
data.tar.gz: 50d4939019348e68c8a9504bf59d28f716152c2554d73bb1b0a8b633c473460d4f55f72df68fd2fedee657ed9496c1c12bd63ea43932f7f1379075b312d94c5c
|
data/lib/notifiable/sender.rb
CHANGED
@@ -12,13 +12,13 @@ module Notifiable
|
|
12
12
|
@base_uri, @access_id, @secret_key, @logger = base_uri, access_id, secret_key, logger
|
13
13
|
end
|
14
14
|
|
15
|
-
def send_media_notification_to_users(user_aliases, media_url, title: nil, message: nil, parameters: {},
|
15
|
+
def send_media_notification_to_users(user_aliases, media_url, title: nil, message: nil, parameters: {}, content_available: nil, thread_id:nil)
|
16
16
|
raise 'user_aliases should be an array' unless user_aliases.is_a? Array
|
17
17
|
raise 'media_url should not be blank' if media_url.nil? || media_url.empty?
|
18
18
|
|
19
19
|
parameters = {media_url: media_url}.merge(parameters)
|
20
20
|
filters = [{property: "user_alias", predicate: "in", value: user_aliases}]
|
21
|
-
send_notification(title: title, message: message, parameters: parameters, content_available:
|
21
|
+
send_notification(title: title, message: message, parameters: parameters, content_available: content_available, filters: filters, thread_id: thread_id, mutable_content: true)
|
22
22
|
end
|
23
23
|
|
24
24
|
def send_notification_to_users(user_aliases, title: nil, message: nil, parameters: nil, content_available: nil, thread_id: nil, mutable_content: nil)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notifiable-sender
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brooke-Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|