class Morpheus::DashboardInterface

Public Instance Methods

get(params={}) click to toggle source
# File lib/morpheus/api/dashboard_interface.rb, line 5
def get(params={})
  execute(method: :get, url: "/api/dashboard", headers: {params: params})
end
recent_activity(params={}) click to toggle source
DEPRECATED

Use ActivityInterface.list() instead.

# File lib/morpheus/api/dashboard_interface.rb, line 10
def recent_activity(params={})
  execute(method: :get, url: "/api/dashboard/recent-activity", headers: {params: params})
end