forked from juanlealz/redmine_update_reminder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.rb
More file actions
17 lines (16 loc) · 713 Bytes
/
init.rb
File metadata and controls
17 lines (16 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Rails.configuration.to_prepare do
require_dependency 'user'
User.send(:include, RedmineUpdateReminder::Patches::UserPatch)
end
Redmine::Plugin.register :redmine_update_reminder do
name 'Redmine Update Reminder'
author 'Arkhitech'
url 'https://github.com/arkhitech/redmine_update_reminder'
author_url 'http://www.arkhitech.com'
description 'This is a plugin for Redmine which sends a reminder email to the assignee working on a task, whose status is not updated with-in allowed duration'
version '1.1'
settings(default: {
'header' => 'Missing Required Task Update',
'footer' => 'powered by arkhitech.com',
}, partial: 'settings/reminder_settings')
end