Commit a00c0f9e authored by Robert Speicher's avatar Robert Speicher

Add Upload count to usage data

parent dd8d40c3
...@@ -46,6 +46,7 @@ module Gitlab ...@@ -46,6 +46,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
} }
} }
......
...@@ -61,6 +61,7 @@ describe Gitlab::UsageData do ...@@ -61,6 +61,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