Files
fizzy/app/views/pwa/manifest.json.erb
T
Mike Dalessio d41d50d52b Account.sole → Current.account
and some other de-tenant changes, including removing the controller
tenanting concerns
2025-11-17 09:11:40 -05:00

43 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": <%= [ "Fizzy", Current.account.name, Rails.env.production? ? nil : Rails.env ].compact.join(" - ").to_json.html_safe %>,
"icons": [
{
"src": "/app-icon-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/app-icon.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "/app-icon-192-maskable.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
}
],
"start_url": "<%= root_path %>",
"display": "standalone",
"scope": "<%= root_path %>",
"description": "Card-up the biggest issues in your projects",
"categories": ["bugs", "business", "productivity"],
"shortcuts": [
{
"name": "Notifications",
"description": "Catch up on recent notifications",
"url": "<%= notifications_path %>",
"icons": [{ "src": "<%= image_url("bell.svg") %>", "sizes": "any" }]
},
{
"name": "Latest Activity",
"description": "See whats new",
"url": "<%= root_path %>",
"icons": [{ "src": "<%= image_url("activity.svg") %>", "sizes": "any" }]
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff"
}