init.rb 750 B

1234567891011121314151617
  1. require 'redmine'
  2. Redmine::Plugin.register :redmine_periodictasks do
  3. name 'Redmine Periodictask plugin'
  4. author 'Tanguy de Courson, Julian Perelli, Kota Shiratsuka, Dmitry Yu Okunev'
  5. description 'This is a plugin for Redmine2 that will allow you to schedule a task to be assigned on a schedule'
  6. version '3.2.0'
  7. url 'https://github.com/mephi-ut/redmine_periodictasks'
  8. author_url 'http://jperelli.com.ar/'
  9. project_module :periodictasks do
  10. permission :periodictasks, {:periodictasks => [:index, :show, :edit, :update, :delete, :new, :create, :destroy]}
  11. end
  12. menu :project_menu, :periodictasks, { :controller => 'periodictasks', :action => 'index' }, :caption => :label_periodictask, :after => :settings, :param => :project_id
  13. end