diaspora/app/controllers/manifest_controller.rb
2019-04-27 17:56:51 +02:00

22 lines
544 B
Ruby

# frozen_string_literal: true
class ManifestController < ApplicationController
def show
render json: '{
"short_name": "diaspora*",
"name": "diaspora*",
"description": "diaspora* is a free, decentralized and privacy respectful social network",
"icons": [
{
"src": "/icon.png",
"type": "image/png",
"sizes": "192x192"
}
],
"start_url": "/",
"background_color": "#000000",
"display": "standalone",
"theme_color": "#000000"
}'
end
end