是否可以在 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)