0

我正在开发一个插件来扩展 redmine 的文件附件功能。

为此,我需要添加一个仅对具有特定角色的用户可见的复选框

我对红宝石完全是菜鸟。这是我在参考了一些其他插件和 redmine 文档后想到的。

在 plugins/myplugin/app/view/attachments/_form.html.erb

<% if view_private_attachment = User.current.allowed_to?(:view_private_attachments, @project) %>
<%= check_box_tag :private_attachment, true, false %>
<%= label_tag :private_attachment, 'Private Attachment', :style => 'font-weight:bold;' %>
    <% end %> 

在 plugins/myplugin/app/init.d

Redmine::Plugin.register :myplugin do
  name 'myplugin'
  author 'njan'
  description 'This is a plugin for Redmine'
  version '0.0.1'
  url 'http://example.com/path/to/plugin'
  author_url 'http://example.com/about'


project_module :issue_tracking do
 permission :view_private_attachments, { }

end
end

复选框未显示。

4

1 回答 1

0

您可以根据您的条件使用复选框的禁用和只读属性。

<%= f.check_box :private_attachment, :disabled => true, :readonly => true %>
于 2013-03-19T07:39:29.657 回答