Module: Msf::WebServices::NoteServlet

Defined in:
lib/msf/core/web_services/servlet/note_servlet.rb

Class Method Summary collapse

Class Method Details

.api_pathObject



3
4
5
# File 'lib/msf/core/web_services/servlet/note_servlet.rb', line 3

def self.api_path
  '/api/v1/notes'
end

.api_path_with_idObject



7
8
9
# File 'lib/msf/core/web_services/servlet/note_servlet.rb', line 7

def self.api_path_with_id
  "#{self.api_path}/?:id?"
end

.registered(app) ⇒ Object



11
12
13
14
15
16
17
# File 'lib/msf/core/web_services/servlet/note_servlet.rb', line 11

def self.registered(app)
  app.get self.api_path, &get_note
  app.get self.api_path_with_id, &get_note
  app.post self.api_path, &report_note
  app.put self.api_path_with_id, &update_note
  app.delete self.api_path, &delete_note
end