projects.rb 259 B

12345678910
  1. class PublicProjectProjectsHooks < Redmine::Hook::ViewListener
  2. # context:
  3. # * :form - the form builder
  4. # * :project - the current project
  5. def view_projects_form(context={})
  6. content_tag(:p, context[:form].check_box(:is_public_project))
  7. end
  8. end