-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.rb
More file actions
31 lines (28 loc) · 1.2 KB
/
init.rb
File metadata and controls
31 lines (28 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#coding: utf-8
require_dependency File.expand_path('../app/helpers/application_helper.rb', __FILE__)
require_dependency File.expand_path('../hooks', __FILE__)
Redmine::Plugin.register :quick_view do
name 'Quick View plugin'
author 'Akira Saito'
description 'This plugin provides ability to view a details of the issue at the issues page.'
version '0.3.0'
settings :default => {'issue_dialog_size'=>'640,600',
'issue_dialog_limit'=>9,
'issue_tooltip_enabled'=>'on',
'tooltip_attributes'=>[
'avatar',
'project',
'subject',
'status',
'priority',
'category',
'target_version',
'assigned_to',
'start_date',
'due_date',
'estimated_hours',
'spent_time'],
'worktime_ext_dialog_anchor_enabled'=>'on',
'worktime_ext_tooltip_enabled'=>'on'},
:partial => 'quick_view_issues/settings'
end