6

是否可以在 GitLab 中为用户设置默认主题?查看gitlab/gitlab.yaml我看不到设置默认值的选项。

在此处输入图像描述


查看数据库,我看到有一个color_scheme_id. 我宁愿不为每个用户编辑数据库。

    mysql> select id, name, theme_id, color_scheme_id from users;

+----+-------------------+----------+-----------------+
| id | name              | theme_id | color_scheme_id |
+----+-------------------+----------+-----------------+
|  1 | Administrator     |        1 |               1 |
|  2 | foo foo           |        4 |               4 |
|  3 | bar bar           |        2 |               1 |
|  4 | foobar foobar     |        2 |               1 |
+----+-------------------+----------+-----------------+
4 rows in set (0.00 sec)
4

1 回答 1

5

有一个正在进行的拉取请求:PR 5116,由Izaak (John) Alpert -- (karlhungus) 撰写

它将添加到 config/gitlab.yml.example 文件中:

+    ## Default theme
+    ##   BASIC  = 1
+    ##   MARS   = 2
+    ##   MODERN = 3
+    ##   GRAY   = 4
+    ##   COLOR  = 5
+    # default_theme: 1 # default: 1
+ 

它是在几个小时前(9 月 22 日)才被撤下的,所以它应该是 GitLab 6.2 的一部分


5 年后 2018 年 8 月更新:当前默认主题为 2(请参阅gitlab-org/omnibus-gitlab/files/gitlab-config-template/gitlab.rb.template.

### Default Theme
# gitlab_rails['gitlab_default_theme'] = 2
于 2013-09-18T05:41:39.190 回答