forked from BadrIT/redmine_trello_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.rb
More file actions
14 lines (12 loc) · 633 Bytes
/
init.rb
File metadata and controls
14 lines (12 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Redmine::Plugin.register :redmine_trello_api do
name 'Redmine Trello plugin'
author 'BadrIT'
description 'API plugin for Trello-For-Redmine plugin'
version '0.0.1'
url 'https://github.com/BadrIT/redmine_trello_api'
author_url 'http://www.badrit.com'
permission :trello_projects, { :trello_projects => [:index] }, :public => true
menu :project_menu, :trello_projects, { :controller => 'trello_projects', :action => 'index' }, :caption => 'Trello', :after => :activity, :param => :project_id,
:html => { :target => '_blank' }
settings :default => {'empty' => true}, :partial => 'settings/redmine_trello_api'
end