Commit 566724a7658d2efe755ad12abbc901c885dce84e
1 parent
7911d32b
Exists in
master
and in
29 other branches
[work-assignment] Preparing base view
Showing
4 changed files
with
27 additions
and
0 deletions
Show diff stats
plugins/work_assignment/lib/work_assignment_plugin/helper.rb
0 → 100644
plugins/work_assignment/lib/work_assignment_plugin/work_assignment.rb
... | ... | @@ -11,4 +11,15 @@ class WorkAssignmentPlugin::WorkAssignment < Folder |
11 | 11 | def self.description |
12 | 12 | _('Defines a work to be done by the members and receives their submissions about this work.') |
13 | 13 | end |
14 | + | |
15 | + def accept_comments? | |
16 | + true | |
17 | + end | |
18 | + | |
19 | + def to_html(options = {}) | |
20 | + lambda do | |
21 | + render :file => 'content_viewer/work_assignment.html.erb' | |
22 | + end | |
23 | + end | |
24 | + | |
14 | 25 | end | ... | ... |
plugins/work_assignment/views/cms/work_assignment_plugin/_work_assignment.html.erb
0 → 100644
plugins/work_assignment/views/content_viewer/work_assignment.html.erb
0 → 100644