Allow app-name configuration to change the name of the PWA (#6093)

This commit is contained in:
Ahmed El-Sharnoby 2023-03-22 03:02:31 +02:00 committed by GitHub
parent 78282a1fd6
commit bca733de3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -40,6 +40,7 @@ export class CodeServerRouteWrapper {
//#region Route Handlers //#region Route Handlers
private manifest: express.Handler = async (req, res, next) => { private manifest: express.Handler = async (req, res, next) => {
const appName = req.args["app-name"] || "code-server"
res.writeHead(200, { "Content-Type": "application/manifest+json" }) res.writeHead(200, { "Content-Type": "application/manifest+json" })
return res.end( return res.end(
@ -47,8 +48,8 @@ export class CodeServerRouteWrapper {
req, req,
JSON.stringify( JSON.stringify(
{ {
name: "code-server", name: appName,
short_name: "code-server", short_name: appName,
start_url: ".", start_url: ".",
display: "fullscreen", display: "fullscreen",
description: "Run Code on a remote server.", description: "Run Code on a remote server.",