fanforce-app-factory 0.24.1 → 0.25.0
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 +8 -8
- data/lib/fanforce/app_factory/routes.rb +2 -2
- data/lib/fanforce/app_factory/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzMxOTZkZTg1MGU4MjJhNjMyNDA4ODc0ZDFkZDQ2ZThhMDQzM2M3Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDU3Y2E0MWYwMWY3MDU3NTkxMjM2YTRiNTYyOGUxOWY0MjY3OGU4ZA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjhiZGUwMDZkZGM1NDhjMDY3MmM3OWZmYTY3ZWIxODQ3ZjU4YmI2ODNlODAz
|
10
|
+
NTk2NjRiZGM1MGM5MTg1ODg4MTM3NmRiMzRjODE2MWVhZWY3YmMxMDVkNzhl
|
11
|
+
OGNkZGY5NjllOWRlNGQ5MzYwZDY3NTAxMTA1MGI0ZWIzM2M0M2U=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjQ0MzcxZGYzMjMzYzY1NGRmZDM2NTRiNDA3N2YwZjExYThjNzYwMTVhNzU1
|
14
|
+
MzM1Yjg3YTE0MjE2YzFiOWVlMGY0NGRlYjk2ZDk4OWQxNzMxNTI5ZmYwODA3
|
15
|
+
NTAwNjJlYjNhMzZlNWFjYWYxZmY4YmViMjdjYTU5ZTYzMzNjMmY=
|
@@ -17,7 +17,7 @@ class FanforceApp::Sinatra
|
|
17
17
|
$Redis.set("installed:#{ff.params[:addon_type]}-#{ff.params[:addon_id]}:#{ff.params[:organization_id]}", ff.params[:api_key])
|
18
18
|
ff.auth(ff.params[:api_key])
|
19
19
|
|
20
|
-
json status: '
|
20
|
+
json status: 'finished-processing'
|
21
21
|
end
|
22
22
|
any '/install' do route_install(params) end
|
23
23
|
|
@@ -28,7 +28,7 @@ class FanforceApp::Sinatra
|
|
28
28
|
|
29
29
|
raise 'API keys must match before an addon can be uninstalled.' if api_key.present? and ff.params[:api_key] != api_key
|
30
30
|
$Redis.del("installed:#{ff.params[:addon_type]}-#{ff.params[:addon_id]}:#{ff.params[:organization_id]}")
|
31
|
-
json status: '
|
31
|
+
json status: 'finished-processing'
|
32
32
|
end
|
33
33
|
any '/uninstall' do route_uninstall(params) end
|
34
34
|
|