mautic 0.1.7 → 0.1.8
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 +1 -0
- data/app/models/mautic/connection.rb +8 -0
- data/app/models/mautic/connections/oauth2.rb +1 -2
- data/lib/mautic/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fe0c00bf9adc2bb52aebcec2b270740492e49d6e8a3627635b1c5612e82b04a
|
4
|
+
data.tar.gz: 40ada8b3e84aa4ee9bb3ced6392fe47c912cd3ccf32bd7c97ff0f08454f2d2ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46d1ac327fee620c46227d3b8e41e16d2b66edcd5d228bdf7a414caca606e107cae91cd2c503fead21e37028b497136f3df19135f9d588d5175a73900e560c8f
|
7
|
+
data.tar.gz: a7eb6c40d61fa28df4907c022af430df7ec3d24c5ccbce5e284dda73f822991251737c3fbadf6ffc51e4505f2324defc2d726582b8f7c5bcc2c918fddf872bbd
|
data/README.md
CHANGED
@@ -86,6 +86,7 @@ add to `config/initializers/mautic.rb`:
|
|
86
86
|
Mautic.configure do |config|
|
87
87
|
# This is for oauth handshake token url. I need to know where your app listen
|
88
88
|
config.base_url = "https://my-rails-app.com"
|
89
|
+
# OR it can be Proc
|
89
90
|
# *optional* This is your default mautic URL - used in form helper
|
90
91
|
config.mautic_url = "https://mautic.my.app"
|
91
92
|
end
|
@@ -38,8 +38,7 @@ module Mautic
|
|
38
38
|
private
|
39
39
|
|
40
40
|
def callback_url
|
41
|
-
|
42
|
-
uri = URI.parse(Mautic.config.base_url)
|
41
|
+
uri = super
|
43
42
|
uri.path = Mautic::Engine.routes.url_helpers.oauth2_connection_path(self)
|
44
43
|
uri.to_s
|
45
44
|
end
|
data/lib/mautic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mautic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukáš Pokorný
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-04-
|
11
|
+
date: 2018-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|