“欢迎文本”中的用户名
如何在Redmine的欢迎文本字段中使用当前用户名?
谢谢
How can I use current username in welcome text field of Redmine?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在Redmine的欢迎文本字段中使用当前用户名?
谢谢
How can I use current username in welcome text field of Redmine?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这是不可能的,但您可以编写一个非常简单的插件来添加 wiki 宏。或者您可以尝试下面的方法:)
只需在您的
vendor/plugins
目录中创建一个名为redmine_username_macro
的新目录。然后将此代码放入vendor/plugins/redmine_username_macro/index.rb
中。That's not possible put of the box, but you can write a very simple plugin which adds a wiki macro. Or you could just try the one below :)
Just create a new directory in your
vendor/plugins
directory calledredmine_username_macro
. Then put this code intovendor/plugins/redmine_username_macro/index.rb
.就像我在此处看到的那样,尝试
User.current.name
。Just like i saw here, try
User.current.name
.