summaryrefslogtreecommitdiff
path: root/app/graphql/types/namespace_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/namespace_type.rb')
-rw-r--r--app/graphql/types/namespace_type.rb23
1 files changed, 14 insertions, 9 deletions
diff --git a/app/graphql/types/namespace_type.rb b/app/graphql/types/namespace_type.rb
index 96eff8a46b0..4cc543f477a 100644
--- a/app/graphql/types/namespace_type.rb
+++ b/app/graphql/types/namespace_type.rb
@@ -6,27 +6,27 @@ module Types
authorize :read_namespace
- field :id, GraphQL::ID_TYPE, null: false,
+ field :id, GraphQL::Types::ID, null: false,
description: 'ID of the namespace.'
- field :name, GraphQL::STRING_TYPE, null: false,
+ field :name, GraphQL::Types::String, null: false,
description: 'Name of the namespace.'
- field :path, GraphQL::STRING_TYPE, null: false,
+ field :path, GraphQL::Types::String, null: false,
description: 'Path of the namespace.'
- field :full_name, GraphQL::STRING_TYPE, null: false,
+ field :full_name, GraphQL::Types::String, null: false,
description: 'Full name of the namespace.'
- field :full_path, GraphQL::ID_TYPE, null: false,
+ field :full_path, GraphQL::Types::ID, null: false,
description: 'Full path of the namespace.'
- field :description, GraphQL::STRING_TYPE, null: true,
+ field :description, GraphQL::Types::String, null: true,
description: 'Description of the namespace.'
markdown_field :description_html, null: true
- field :visibility, GraphQL::STRING_TYPE, null: true,
+ field :visibility, GraphQL::Types::String, null: true,
description: 'Visibility of the namespace.'
- field :lfs_enabled, GraphQL::BOOLEAN_TYPE, null: true, method: :lfs_enabled?,
+ field :lfs_enabled, GraphQL::Types::Boolean, null: true, method: :lfs_enabled?,
description: 'Indicates if Large File Storage (LFS) is enabled for namespace.'
- field :request_access_enabled, GraphQL::BOOLEAN_TYPE, null: true,
+ field :request_access_enabled, GraphQL::Types::Boolean, null: true,
description: 'Indicates if users can request access to namespace.'
field :root_storage_statistics, Types::RootStorageStatisticsType,
@@ -42,6 +42,11 @@ module Types
null: true,
description: 'The package settings for the namespace.'
+ field :shared_runners_setting,
+ Types::Namespace::SharedRunnersSettingEnum,
+ null: true,
+ description: "Shared runners availability for the namespace and its descendants."
+
def root_storage_statistics
Gitlab::Graphql::Loaders::BatchRootStorageStatisticsLoader.new(object.id).find
end