Commit 6523f532554ef24fe954bfc85c3829eb7578be38

Authored by Henrik
1 parent a20535f8
Exists in master and in 1 other branch production

Return app.id in api stats

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
app/controllers/api/v1/stats_controller.rb
... ... @@ -12,6 +12,7 @@ class Api::V1::StatsController < ApplicationController
12 12  
13 13 stats = {
14 14 :name => @app.name,
  15 + :id => @app.id,
15 16 :last_error_time => @last_error_time,
16 17 :unresolved_errors => @app.unresolved_count
17 18 }
... ...