diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-09-22 23:30:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 23:30:31 +0800 |
commit | c0ed26f98725cd9d24fd4ab90fb8c677fd0d3e0f (patch) | |
tree | 7e0b7c390cbe79cb45db5cd3a3876e5f5bc4615a | |
parent | 383edf2fd7d3cf952c491dd483ba68d7a8e4aaf2 (diff) | |
download | gitea-c0ed26f98725cd9d24fd4ab90fb8c677fd0d3e0f.tar.gz gitea-c0ed26f98725cd9d24fd4ab90fb8c677fd0d3e0f.zip |
Remove some dead code (#27196)
Some code is not in use any more, remove them.
-rw-r--r-- | modules/setting/server.go | 2 | ||||
-rw-r--r-- | modules/web/middleware/data.go | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/modules/setting/server.go b/modules/setting/server.go index 08eb82fb3d..d053fee5e7 100644 --- a/modules/setting/server.go +++ b/modules/setting/server.go @@ -81,7 +81,6 @@ var ( StaticCacheTime time.Duration EnableGzip bool LandingPageURL LandingPage - LandingPageCustom string UnixSocketPermission uint32 EnablePprof bool PprofDataPath string @@ -103,7 +102,6 @@ var ( StaticURLPrefix string AbsoluteAssetURL string - HasRobotsTxt bool ManifestData string ) diff --git a/modules/web/middleware/data.go b/modules/web/middleware/data.go index 9497dc02e2..08d83f94be 100644 --- a/modules/web/middleware/data.go +++ b/modules/web/middleware/data.go @@ -47,8 +47,6 @@ func GetContextData(c context.Context) ContextData { func CommonTemplateContextData() ContextData { return ContextData{ - "IsLandingPageHome": setting.LandingPageURL == setting.LandingPageHome, - "IsLandingPageExplore": setting.LandingPageURL == setting.LandingPageExplore, "IsLandingPageOrganizations": setting.LandingPageURL == setting.LandingPageOrganizations, "ShowRegistrationButton": setting.Service.ShowRegistrationButton, |