File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,12 @@ has type => (
53
53
builder => sub { $_ [0]-> _rset && $_ [0]-> _rset-> type; },
54
54
);
55
55
56
+ has description => (
57
+ is => ' rw' ,
58
+ lazy => 1,
59
+ builder => sub { $_ [0]-> _rset && $_ [0]-> _rset-> description; },
60
+ );
61
+
56
62
has expiry => (
57
63
is => ' rw' ,
58
64
isa => Maybe[DateAndTime],
@@ -158,6 +164,7 @@ sub inflate_result {
158
164
type => $data -> {type },
159
165
expiry => $expiry ,
160
166
usedby => $data -> {usedby },
167
+ description => $data -> {description },
161
168
filename => $data -> {filename },
162
169
file_user => $data -> {file_user },
163
170
file_group => $data -> {file_group },
Original file line number Diff line number Diff line change 88
88
</a>
89
89
</td>
90
90
[% END %]
91
- <td>[% cert.cert.cn | html %]</td>
91
+ <td>
92
+ [% cert.cert.cn | html %]
93
+ [% IF cert.cert.description %]
94
+ ([% cert.cert.description | html %])
95
+ [% END %]
96
+ </td>
92
97
<td>[% cert.cert.type | html %]</td>
93
98
<td>[% cert.cert.usedby | html %]</td>
94
99
<td>[% cert.use.name | html %]</td>
You can’t perform that action at this time.
0 commit comments