Merge pull request #1004 from Retrospring/cache-headers-on-manifest
Cache headers for web app manifest based on user theme
This commit is contained in:
commit
1c74061c1b
|
@ -3,7 +3,13 @@
|
||||||
class ManifestsController < ApplicationController
|
class ManifestsController < ApplicationController
|
||||||
include ThemeHelper
|
include ThemeHelper
|
||||||
|
|
||||||
|
skip_before_action :banned?
|
||||||
|
skip_before_action :find_active_announcements
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
expires_in 1.day
|
||||||
|
return if fresh_when current_user&.theme
|
||||||
|
|
||||||
render json: {
|
render json: {
|
||||||
name: APP_CONFIG["site_name"],
|
name: APP_CONFIG["site_name"],
|
||||||
description: t("about.index.subtitle"),
|
description: t("about.index.subtitle"),
|
||||||
|
@ -12,17 +18,19 @@ class ManifestsController < ApplicationController
|
||||||
display: "standalone",
|
display: "standalone",
|
||||||
categories: %w[social],
|
categories: %w[social],
|
||||||
lang: I18n.locale,
|
lang: I18n.locale,
|
||||||
shortcuts: [
|
shortcuts:,
|
||||||
webapp_shortcut(inbox_url, t("navigation.inbox"), "inbox")
|
|
||||||
],
|
|
||||||
icons: webapp_icons,
|
icons: webapp_icons,
|
||||||
theme_color: theme_color,
|
theme_color:,
|
||||||
background_color: mobile_theme_color
|
background_color: mobile_theme_color
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def shortcuts = [
|
||||||
|
webapp_shortcut(inbox_url, t("navigation.inbox"), "inbox")
|
||||||
|
]
|
||||||
|
|
||||||
def webapp_shortcut(url, name, icon_name)
|
def webapp_shortcut(url, name, icon_name)
|
||||||
{
|
{
|
||||||
name: name,
|
name: name,
|
||||||
|
|
Loading…
Reference in New Issue