“欢迎文本”中的用户名

发布于 2024-10-16 12:55:07 字数 44 浏览 2 评论 0原文

如何在Redmine的欢迎文本字段中使用当前用户名?

谢谢

How can I use current username in welcome text field of Redmine?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南冥有猫 2024-10-23 12:55:07

这是不可能的,但您可以编写一个非常简单的插件来添加 wiki 宏。或者您可以尝试下面的方法:)

只需在您的 vendor/plugins 目录中创建一个名为 redmine_username_macro 的新目录。然后将此代码放入 vendor/plugins/redmine_username_macro/index.rb 中。

require 'redmine'
Redmine::Plugin.register :my_user_plugin do
  name 'User Macro plugin'
  url 'http://dev.holgerjust.de/projects/redmine-misc'
  author 'Holger Just'
  description 'Add macro for inserting the current user.'
  version '0.1'
end

Redmine::WikiFormatting::Macros.register do
  desc "Insert the name of the current user. Example: !{{username}}"
  macro :username do |obj, args|
    h(User.current.name)
  end
end

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 called redmine_username_macro. Then put this code into vendor/plugins/redmine_username_macro/index.rb.

require 'redmine'
Redmine::Plugin.register :my_user_plugin do
  name 'User Macro plugin'
  url 'http://dev.holgerjust.de/projects/redmine-misc'
  author 'Holger Just'
  description 'Add macro for inserting the current user.'
  version '0.1'
end

Redmine::WikiFormatting::Macros.register do
  desc "Insert the name of the current user. Example: !{{username}}"
  macro :username do |obj, args|
    h(User.current.name)
  end
end
迷鸟归林 2024-10-23 12:55:07

就像我在此处看到的那样,尝试User.current.name

Just like i saw here, try User.current.name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文