Poprawki związane z przejściem na redmine 0.9.x; refs #25
[redakcja_redmine.git] / init.rb
diff --git a/init.rb b/init.rb
index 1df1e93..b1739c3 100644 (file)
--- a/init.rb
+++ b/init.rb
@@ -2,10 +2,11 @@ require 'redmine'
 
 # Patches to the Redmine core.
 require 'dispatcher'
-Dispatcher.to_prepare :redmine_kanban do
+
+Dispatcher.to_prepare :redmine_publications do
   require_dependency 'issue'
-  # Guards against including the module multiple time (like in tests)
+  
+  #Guards against including the module multiple time (like in tests)
   # and registering multiple callbacks
   unless Issue.included_modules.include? RedminePublications::IssuePatch
     Issue.send(:include, RedminePublications::IssuePatch)
@@ -14,14 +15,20 @@ end
 
 require_dependency 'issue_publication_hook'
 
-Redmine::Plugin.register :redmine_publicatons do
+Redmine::Plugin.register :redmine_publications do
   name 'Publications managment plugin'
   author 'Łukasz Rekucki'
   description 'This plugn helps manage issues related to a publication.'
-  version '0.0.3'
+  version '0.0.9'
+
+  # permission :view_issues_for_publication, :publications => :issues 
+
+  settings :partial => 'settings/publications_settings',
+       :default => { :tracker => '1', :pattern => '.*/[a-z_].xml'}
 
+  menu :application_menu, :publications, { :controller => 'publications', :action => 'index' }, :caption => 'Publikacje'
 
-  requires_redmine :version_or_higher => '0.8.0'        
+#  requires_redmine :version_or_higher => '0.8.0'       
 
 end