redmine修改主页
redmine默认的主页没有内容,可以通过以下修改增加默认主页的内容:管理—>配置—-> 一般 里可以修改标题并添加主页内容。如下:
也可以通过修改源代码实现,app/views/welcome/index.html.erb 文件是主页的代码文件,可以在这里增加自定义的任何内容。
也有网上提到方法,通过修改account_controller.rb文件实现将主页改为我的工作台。具体实现方法有两种,如下(以下内容来自于网络,未验证):
1.修改account_controller.rb
1将successful_authentication中的redirect_back_or_default那一行
2 改成redirect_to : controller => "my", :action => "page"
缺点:如果是通过issue链接想直接查看issue内容,登录后也会跳到工作台,而不显示issue内容;
2.修改application_controler.rb
1在require_login的respond_to那一行之上加上
2 if url.rindex("/") == url.length -1
3 url = url_for(:controller => "my", :action => "page")
4 end
修改完后重启相关服务即可。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/redmine-index/6204.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.