summaryrefslogtreecommitdiff
path: root/app/graphql/types/project_statistics_type.rb
diff options
context:
space:
mode:
authorAlessio Caiazza <acaiazza@gitlab.com>2019-06-04 12:11:41 +0000
committerNick Thomas <nick@gitlab.com>2019-06-04 12:11:41 +0000
commit4e251d01de8014a494049710ac27146a3f049d89 (patch)
treee6984b36b73e489c258ae7692847f7a33ba3f9a3 /app/graphql/types/project_statistics_type.rb
parent6eee9335c4576b908941a8aab5cb0f7588a2d14d (diff)
downloadgitlab-ce-4e251d01de8014a494049710ac27146a3f049d89.tar.gz
Expose wiki_size on GraphQL API
Diffstat (limited to 'app/graphql/types/project_statistics_type.rb')
-rw-r--r--app/graphql/types/project_statistics_type.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/graphql/types/project_statistics_type.rb b/app/graphql/types/project_statistics_type.rb
index 35ae23c21fc..62537361918 100644
--- a/app/graphql/types/project_statistics_type.rb
+++ b/app/graphql/types/project_statistics_type.rb
@@ -11,5 +11,6 @@ module Types
field :lfs_objects_size, GraphQL::INT_TYPE, null: false
field :build_artifacts_size, GraphQL::INT_TYPE, null: false
field :packages_size, GraphQL::INT_TYPE, null: false
+ field :wiki_size, GraphQL::INT_TYPE, null: true
end
end