File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,28 @@ def call
31
31
def self . attributes_hash ( issue )
32
32
{
33
33
# initially "title" was part of the print template, but it has been removed.
34
- # we can configure other default values here:
35
- # title: issue.subject,
34
+ id : issue . id ,
35
+ subject : issue . subject ,
36
+ description : issue . description ,
37
+ project_id : "TBD" ,
38
+ project_name : "TBD" ,
39
+ tracker_id : "TBD" ,
40
+ tracker_name : "TBD" ,
41
+ status_id : "TBD" ,
42
+ status_name : "TBD" ,
43
+ priority_id : "TBD" ,
44
+ priority_name : "TBD" ,
45
+ author_id : "TBD" ,
46
+ author_name : "TBD" ,
47
+ assigned_to_id : "TBD" ,
48
+ assigned_to_name : "TBD" ,
49
+ is_private : issue . is_private ,
50
+ start_date : issue . start_date ,
51
+ done_date : "TBD" ,
52
+ estimated_hours : issue . estimated_hours ,
53
+ total_estimated_hours : issue . total_estimated_hours ,
54
+ created_on : issue . created_on ,
55
+ updated_on : issue . updated_on ,
36
56
}
37
57
end
38
58
@@ -76,7 +96,7 @@ def self.map_data(center, features)
76
96
] ,
77
97
scale : 25000 ,
78
98
projection : "EPSG:3857" ,
79
- dpi : 72
99
+ dpi : 300
80
100
}
81
101
end
82
102
You can’t perform that action at this time.
0 commit comments