如何在gitlab中为用户设置默认主题

时间:2013-09-17 19:03:04

标签: user-interface gitlab

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

enter image description here

查看数据库,我发现有一个'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)

1 个答案:

答案 0 :(得分:3)

正在进行拉取请求:PR 5116Izaak (John) Alpert -- (karlhungus)

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

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

It just got pulled a few hours ago(9月22日),所以它应该是GitLab 6.2的一部分


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

### Default Theme
# gitlab_rails['gitlab_default_theme'] = 2