gitlab-org--gitlab-foss/app/graphql/types/release_tag_wildcard_id_enu...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
280 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Types
class ReleaseTagWildcardIdEnum < BaseEnum
graphql_name 'ReleaseTagWildcardId'
description 'Release tag ID wildcard values'
value 'NONE', 'No release tag is assigned.'
value 'ANY', 'Release tag is assigned.'
end
end