Add 'lastChannelRefreshedAt' to /api/v1/stats

This commit is contained in:
Omar Roth 2019-03-01 19:55:07 -06:00
parent 057e69fe70
commit f0cc7a925c
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@ if config.statistics_enabled
},
},
"metadata" => {
"updatedAt" => Time.now.to_unix,
"updatedAt" => Time.now.to_unix,
"lastChannelRefreshedAt" => PG_DB.query_one?("SELECT updated FROM channels ORDER BY updated DESC LIMIT 1", as: Time).try &.to_unix || 0,
},
}