neeto-commons-backend 1.0.92 → 1.0.93
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/views/neeto_commons_backend/well_knowns/apple_app_site_association.json.jbuilder +17 -0
- data/app/views/neeto_commons_backend/well_knowns/assetlinks.json.jbuilder +20 -0
- data/lib/neeto_commons_backend/routes/well_knowns.rb +1 -1
- data/lib/neeto_commons_backend/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b248d0b106c8b97abd2adac3d6e2ee8bfe0656a41565e86ac93b24e90c82729f
|
4
|
+
data.tar.gz: 66dd60ba70ca75f78c2b7522ba189ec24767f57c5349f4526fe5ff273bdcb2b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a7104c3bf946a80025f2bc58c3f7cb99d89d34d59388493ab4a81f4404edc9d404a49201ce27455cdae098932049d5424c210e0776d57a531c8222157e2f56a
|
7
|
+
data.tar.gz: 05fca46e1a5159746e0ae35a0e5e843c417682258581330242cf03232b5b0c7ac47bf0e2cb4a5c22533c4882af614309818220b98158654ec0e17a8e26b86ebe
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
json.applinks(
|
4
|
+
{
|
5
|
+
apps: [],
|
6
|
+
details: [
|
7
|
+
{
|
8
|
+
appID: "5V896MVJUP.com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}",
|
9
|
+
paths: ["*"]
|
10
|
+
},
|
11
|
+
{
|
12
|
+
appID: "5V896MVJUP.com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}.staging",
|
13
|
+
paths: ["*"]
|
14
|
+
}
|
15
|
+
]
|
16
|
+
}
|
17
|
+
)
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
json.array! [
|
4
|
+
{
|
5
|
+
"relation": ["delegate_permission/common.handle_all_urls"],
|
6
|
+
"target": {
|
7
|
+
"namespace": "android_app",
|
8
|
+
"package_name": "com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}.staging",
|
9
|
+
"sha256_cert_fingerprints": Rails.application.secrets[:sha256_cert_fingerprints_staging]
|
10
|
+
}
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"relation": ["delegate_permission/common.handle_all_urls"],
|
14
|
+
"target": {
|
15
|
+
"namespace": "android_app",
|
16
|
+
"package_name": "com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}",
|
17
|
+
"sha256_cert_fingerprints": Rails.application.secrets[:sha256_cert_fingerprints]
|
18
|
+
}
|
19
|
+
}
|
20
|
+
]
|
@@ -3,7 +3,7 @@
|
|
3
3
|
Rails.application.routes.draw do
|
4
4
|
defaults format: :json do
|
5
5
|
scope ".well-known" do
|
6
|
-
get "assetlinks", to: "well_knowns#assetlinks"
|
6
|
+
get "assetlinks", to: "neeto_commons_backend/well_knowns#assetlinks"
|
7
7
|
get "apple-app-site-association", to: "well_knowns#apple_app_site_association"
|
8
8
|
end
|
9
9
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neeto-commons-backend
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.93
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Prasanth Chaduvula
|
@@ -317,6 +317,8 @@ files:
|
|
317
317
|
- app/services/neeto_commons_backend/sample_data/common/organization_service.rb
|
318
318
|
- app/services/neeto_commons_backend/source_map_publish_service.rb
|
319
319
|
- app/views/neeto_commons_backend/failures/show.html.erb
|
320
|
+
- app/views/neeto_commons_backend/well_knowns/apple_app_site_association.json.jbuilder
|
321
|
+
- app/views/neeto_commons_backend/well_knowns/assetlinks.json.jbuilder
|
320
322
|
- app/views/shared/_common.html.erb
|
321
323
|
- app/views/shared/_neeto_engineering_replay_widget.html.erb
|
322
324
|
- app/views/shared/_neeto_widget.html.erb
|