mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
c4da6ed88b
Adds standalone screen, and top-bar color and background color on splash screen
17 lines
508 B
Ruby
17 lines
508 B
Ruby
class ManifestJsonController < ApplicationController
|
|
layout false
|
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
|
|
|
|
def index
|
|
manifest = {
|
|
short_name: SiteSetting.title,
|
|
display: 'standalone',
|
|
orientation: 'portrait',
|
|
start_url: "#{Discourse.base_uri}/",
|
|
background_color: "##{ColorScheme.hex_for_name('secondary')}",
|
|
theme_color: "##{ColorScheme.hex_for_name('header_background')}"
|
|
}
|
|
|
|
render json: manifest.to_json
|
|
end
|
|
end
|