diff options
Diffstat (limited to 'Backend/Api')
-rw-r--r-- | Backend/Api/Api/Assets/appDownload.html | 2 | ||||
-rw-r--r-- | Backend/Api/Api/Controllers/appController.cs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Backend/Api/Api/Assets/appDownload.html b/Backend/Api/Api/Assets/appDownload.html index 0d18e98..110ddf8 100644 --- a/Backend/Api/Api/Assets/appDownload.html +++ b/Backend/Api/Api/Assets/appDownload.html @@ -2,7 +2,7 @@ <html> <head> <meta charset="utf-8" /> - <title>Verification Successful</title> + <title>Preuzimanje apk</title> </head> <body style="background-color:black;"> <div style="background-image: linear-gradient(to bottom right,#7CC0DA,#093A4C); margin: auto; width: 50%;margin-bottom:100px;"> diff --git a/Backend/Api/Api/Controllers/appController.cs b/Backend/Api/Api/Controllers/appController.cs index ed83231..30c7e33 100644 --- a/Backend/Api/Api/Controllers/appController.cs +++ b/Backend/Api/Api/Controllers/appController.cs @@ -33,8 +33,6 @@ namespace Api.Controllers { var html = await System.IO.File.ReadAllTextAsync(@"./Assets/appDownload.html"); - html = html.Replace("{{name}}", "test"); - return base.Content(html, "text/html"); } |