lib/desk/client/insight.rb in desk-1.0.8 vs lib/desk/client/insight.rb in desk-1.0.9

- old
+ new

@@ -1,16 +1,16 @@ module Desk class Client module Insight def show_insights_meta - get("insights/meta") + get("insights3/meta") end alias_method :insights_meta, :show_insights_meta def create_insights_report(*args) options = args.last.is_a?(Hash) ? args.pop : {} - post("insights/reports", options) + post("insights3/reports", options) end end end end