summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2019-06-17 02:24:49 +0800
committerzeripath <art27@cantab.net>2019-06-16 19:24:49 +0100
commit1e8a6164262bafd6878269b153c43686977c4603 (patch)
treeadcd1e8fb291214d7624421c8d76a2b9045652b0
parentd8168b356d3ddaf3c38815a46ab075bf5bbe93c6 (diff)
downloadgitea-1e8a6164262bafd6878269b153c43686977c4603.tar.gz
gitea-1e8a6164262bafd6878269b153c43686977c4603.zip
show lfs config on admin panel (#7220)
-rw-r--r--options/locale/locale_en-US.ini5
-rw-r--r--routers/admin/admin.go1
-rw-r--r--templates/admin/config.tmpl16
3 files changed, 22 insertions, 0 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index 71c76fd9b6..97e4e3f91c 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -1722,6 +1722,11 @@ config.ssh_keygen_path = Keygen ('ssh-keygen') Path
config.ssh_minimum_key_size_check = Minimum Key Size Check
config.ssh_minimum_key_sizes = Minimum Key Sizes
+config.lfs_config = LFS Configuration
+config.lfs_enabled = Enabled
+config.lfs_content_path = LFS Content Path
+config.lfs_http_auth_expiry = LFS HTTP Auth Expiry
+
config.db_config = Database Configuration
config.db_type = Type
config.db_host = Host
diff --git a/routers/admin/admin.go b/routers/admin/admin.go
index b4eac2c677..2836b7ddc7 100644
--- a/routers/admin/admin.go
+++ b/routers/admin/admin.go
@@ -225,6 +225,7 @@ func Config(ctx *context.Context) {
ctx.Data["ReverseProxyAuthEmail"] = setting.ReverseProxyAuthEmail
ctx.Data["SSH"] = setting.SSH
+ ctx.Data["LFS"] = setting.LFS
ctx.Data["Service"] = setting.Service
ctx.Data["DbCfg"] = models.DbCfg
diff --git a/templates/admin/config.tmpl b/templates/admin/config.tmpl
index 7a81eb2668..b8bf1ec028 100644
--- a/templates/admin/config.tmpl
+++ b/templates/admin/config.tmpl
@@ -97,6 +97,22 @@
</div>
<h4 class="ui top attached header">
+ {{.i18n.Tr "admin.config.lfs_config"}}
+ </h4>
+ <div class="ui attached table segment">
+ <dl class="dl-horizontal admin-dl-horizontal">
+ <dt>{{.i18n.Tr "admin.config.lfs_enabled"}}</dt>
+ <dd><i class="fa fa{{if .LFS.StartServer}}-check{{end}}-square-o"></i></dd>
+ {{if .LFS.StartServer}}
+ <dt>{{.i18n.Tr "admin.config.lfs_content_path"}}</dt>
+ <dd>{{.LFS.ContentPath}}</dd>
+ <dt>{{.i18n.Tr "admin.config.lfs_http_auth_expiry"}}</dt>
+ <dd>{{.LFS.HTTPAuthExpiry}}</dd>
+ {{end}}
+ </dl>
+ </div>
+
+ <h4 class="ui top attached header">
{{.i18n.Tr "admin.config.db_config"}}
</h4>
<div class="ui attached table segment">