| Module | Core::ControllerInterface |
| In: |
core/context.rb
|
The Controller will connect the View with the Service layer. This interface provides the methods available to be called by the View.
# File core/context.rb, line 71
71: def add_note(annotatable_type,annotatable_id,author,category,text) raise 'unimplemented!' end
# File core/context.rb, line 72
72: def edit_note(note_id,author,category,text) raise 'unimplemented!' end
# File core/context.rb, line 69
69: def notes_for(annotatable_type, annotatable_id) raise 'unimplemented!' end