Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
redmine_kanban/init.rb
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50 lines (42 sloc)
1.66 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'redmine' | |
# Patches to the Redmine core. | |
require 'dispatcher' | |
Dispatcher.to_prepare :redmine_kanban do | |
require_dependency 'issue' | |
# Guards against including the module multiple time (like in tests) | |
# and registering multiple callbacks | |
unless Issue.included_modules.include? RedmineKanban::IssuePatch | |
Issue.send(:include, RedmineKanban::IssuePatch) | |
end | |
end | |
Redmine::Plugin.register :redmine_kanban do | |
name 'Kanban' | |
author 'Eric Davis' | |
url 'https://projects.littlestreamsoftware.com/projects/redmine-kanban' | |
author_url 'http://www.littlestreamsoftware.com' | |
description 'The Redmine Kanban plugin is used to manage issues according to the Kanban system of project management.' | |
version '0.1.1' | |
requires_redmine :version_or_higher => '0.8.0' | |
permission(:view_kanban, {:kanbans => [:show]}) | |
permission(:edit_kanban, {:kanbans => [:update]}) | |
permission(:manage_kanban, {}) | |
settings(:partial => 'settings/kanban_settings', | |
:default => { | |
'panes' => { | |
'incoming' => { 'status' => nil, 'limit' => 5}, | |
'backlog' => { 'status' => nil, 'limit' => 15}, | |
'selected' => { 'status' => nil, 'limit' => 8}, | |
'quick-tasks' => {'limit' => 5}, | |
'active' => { 'status' => nil, 'limit' => 5}, | |
'testing' => { 'status' => nil, 'limit' => 5}, | |
'finished' => {'status' => nil, 'limit' => 7} | |
} | |
}) | |
menu(:top_menu, | |
:kanban, | |
{:controller => 'kanbans', :action => 'show'}, | |
:caption => :kanban_title, | |
:if => Proc.new { | |
User.current.allowed_to?(:view_kanban, nil, :global => true) | |
}) | |
end |