OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/init.rb

19 lines
1.0 KiB

13 years ago
require 'redmine'
Redmine::Plugin.register :chiliproject_my_project_page do
13 years ago
name 'My Project Page Plugin'
13 years ago
author 'Tim Felgentreff @ finnlabs'
author_url 'http://finn.de/team/#t.felgentreff'
description 'This plugin replaces the old overview page for projects with something similar to the "My Page"'
13 years ago
version MyProjectPage::Version.full
Redmine::AccessControl.permission(:view_project).actions << "my_projects_overviews/index"
Redmine::AccessControl.permission(:edit_project).actions << "my_projects_overviews/page_layout" <<
"my_projects_overviews/add_block" <<
"my_projects_overviews/remove_block" <<
"my_projects_overviews/update_custom_element" <<
"my_projects_overviews/order_blocks" <<
"my_projects_overviews/destroy_attachment"
13 years ago
end