Module: Msf::WebServices::WorkspaceServlet

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

Class Method Summary collapse

Class Method Details

.api_pathObject



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

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

.api_path_with_idObject



7
8
9
# File 'lib/msf/core/web_services/servlet/workspace_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/workspace_servlet.rb', line 11

def self.registered(app)
  app.get self.api_path, &get_workspace
  app.get self.api_path_with_id, &get_workspace
  app.post self.api_path, &add_workspace
  app.put self.api_path_with_id, &update_workspace
  app.delete self.api_path, &delete_workspace
end