Commit e21ed5fe authored by Robert Speicher's avatar Robert Speicher Committed by Rémy Coutable

Add Upload count to usage data

parent f30a46b4
...@@ -41,6 +41,7 @@ module Gitlab ...@@ -41,6 +41,7 @@ module Gitlab
services: Service.where(active: true).count, services: Service.where(active: true).count,
snippets: Snippet.count, snippets: Snippet.count,
todos: Todo.count, todos: Todo.count,
uploads: Upload.count,
web_hooks: WebHook.count web_hooks: WebHook.count
} }
} }
......
...@@ -49,6 +49,7 @@ describe Gitlab::UsageData do ...@@ -49,6 +49,7 @@ describe Gitlab::UsageData do
services services
snippets snippets
todos todos
uploads
web_hooks web_hooks
)) ))
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment