Commit 19cf9f25 authored by Luke Duncalfe's avatar Luke Duncalfe

Autocorrect Graphql/Descriptions offenses

https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55132 extended the
existing Graphql/Descriptions cop to cover enum values.

Existing offenses were added to `.rubocop_manual_todo.yml`.

This commit is the autocorrection-generated changes that add missing
periods to enum value descriptions.

It was generated using:

    bundle exec rubocop ee/app/graphql app/graphql \
      --auto-correct \
      --only Graphql/Descriptions

https://gitlab.com/gitlab-org/gitlab/-/issues/322903
parent e3bc67fa
......@@ -14,59 +14,24 @@
Graphql/Descriptions:
Exclude:
- 'app/graphql/types/access_level_enum.rb'
- 'app/graphql/types/admin/analytics/usage_trends/measurement_identifier_enum.rb'
- 'app/graphql/types/alert_management/alert_sort_enum.rb'
- 'app/graphql/types/alert_management/domain_filter_enum.rb'
- 'app/graphql/types/alert_management/integration_type_enum.rb'
- 'app/graphql/types/base_enum.rb'
- 'app/graphql/types/ci/config/status_enum.rb'
- 'app/graphql/types/ci/job_artifact_file_type_enum.rb'
- 'app/graphql/types/ci/pipeline_config_source_enum.rb'
- 'app/graphql/types/ci/pipeline_status_enum.rb'
- 'app/graphql/types/commit_action_mode_enum.rb'
- 'app/graphql/types/commit_encoding_enum.rb'
- 'app/graphql/types/container_expiration_policy_cadence_enum.rb'
- 'app/graphql/types/container_expiration_policy_keep_enum.rb'
- 'app/graphql/types/container_expiration_policy_older_than_enum.rb'
- 'app/graphql/types/container_repository_sort_enum.rb'
- 'app/graphql/types/design_management/design_version_event_enum.rb'
- 'app/graphql/types/error_tracking/sentry_error_status_enum.rb'
- 'app/graphql/types/issuable_sort_enum.rb'
- 'app/graphql/types/issuable_state_enum.rb'
- 'app/graphql/types/issue_sort_enum.rb'
- 'app/graphql/types/issue_state_event_enum.rb'
- 'app/graphql/types/merge_request_sort_enum.rb'
- 'app/graphql/types/merge_request_state_enum.rb'
- 'app/graphql/types/milestone_state_enum.rb'
- 'app/graphql/types/mutation_operation_mode_enum.rb'
- 'app/graphql/types/notes/position_type_enum.rb'
- 'app/graphql/types/packages/package_type_enum.rb'
- 'app/graphql/types/projects/namespace_project_sort_enum.rb'
- 'app/graphql/types/release_sort_enum.rb'
- 'app/graphql/types/snippets/blob_action_enum.rb'
- 'app/graphql/types/snippets/type_enum.rb'
- 'app/graphql/types/snippets/visibility_scopes_enum.rb'
- 'app/graphql/types/sort_enum.rb'
- 'app/graphql/types/todo_action_enum.rb'
- 'app/graphql/types/todo_target_enum.rb'
- 'app/graphql/types/tree/type_enum.rb'
- 'app/graphql/types/user_state_enum.rb'
- 'ee/app/graphql/ee/types/issue_sort_enum.rb'
- 'ee/app/graphql/ee/types/list_limit_metric_enum.rb'
- 'ee/app/graphql/ee/types/todo_target_enum.rb'
- 'ee/app/graphql/types/alert_management/payload_alert_field_name_enum.rb'
- 'ee/app/graphql/types/alert_management/payload_alert_field_type_enum.rb'
- 'ee/app/graphql/types/boards/epic_wildcard_id_enum.rb'
- 'ee/app/graphql/types/boards/iteration_wildcard_id_enum.rb'
- 'ee/app/graphql/types/dast_site_profile_validation_status_enum.rb'
- 'ee/app/graphql/types/dast_site_validation_strategy_enum.rb'
- 'ee/app/graphql/types/epic_sort_enum.rb'
- 'ee/app/graphql/types/epic_state_enum.rb'
- 'ee/app/graphql/types/epic_state_event_enum.rb'
- 'ee/app/graphql/types/geo/registry_state_enum.rb'
- 'ee/app/graphql/types/health_status_enum.rb'
- 'ee/app/graphql/types/iteration_state_enum.rb'
- 'ee/app/graphql/types/move_type_enum.rb'
- 'ee/app/graphql/types/requirements_management/requirement_state_enum.rb'
- 'ee/app/graphql/types/requirements_management/test_report_state_enum.rb'
- 'ee/app/graphql/types/security_scanner_type_enum.rb'
......@@ -74,7 +39,6 @@ Graphql/Descriptions:
- 'ee/app/graphql/types/vulnerability_grade_enum.rb'
- 'ee/app/graphql/types/vulnerability_report_type_enum.rb'
- 'ee/app/graphql/types/vulnerability_severity_enum.rb'
- 'ee/app/graphql/types/vulnerability_sort_enum.rb'
- 'ee/app/graphql/types/vulnerability_state_enum.rb'
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/267606
......
......@@ -8,16 +8,16 @@ module Types
graphql_name 'MeasurementIdentifier'
description 'Possible identifier types for a measurement'
value 'PROJECTS', 'Project count', value: 'projects'
value 'USERS', 'User count', value: 'users'
value 'ISSUES', 'Issue count', value: 'issues'
value 'MERGE_REQUESTS', 'Merge request count', value: 'merge_requests'
value 'GROUPS', 'Group count', value: 'groups'
value 'PIPELINES', 'Pipeline count', value: 'pipelines'
value 'PIPELINES_SUCCEEDED', 'Pipeline count with success status', value: 'pipelines_succeeded'
value 'PIPELINES_FAILED', 'Pipeline count with failed status', value: 'pipelines_failed'
value 'PIPELINES_CANCELED', 'Pipeline count with canceled status', value: 'pipelines_canceled'
value 'PIPELINES_SKIPPED', 'Pipeline count with skipped status', value: 'pipelines_skipped'
value 'PROJECTS', 'Project count.', value: 'projects'
value 'USERS', 'User count.', value: 'users'
value 'ISSUES', 'Issue count.', value: 'issues'
value 'MERGE_REQUESTS', 'Merge request count.', value: 'merge_requests'
value 'GROUPS', 'Group count.', value: 'groups'
value 'PIPELINES', 'Pipeline count.', value: 'pipelines'
value 'PIPELINES_SUCCEEDED', 'Pipeline count with success status.', value: 'pipelines_succeeded'
value 'PIPELINES_FAILED', 'Pipeline count with failed status.', value: 'pipelines_failed'
value 'PIPELINES_CANCELED', 'Pipeline count with canceled status.', value: 'pipelines_canceled'
value 'PIPELINES_SKIPPED', 'Pipeline count with skipped status.', value: 'pipelines_skipped'
end
end
end
......
......@@ -6,20 +6,20 @@ module Types
graphql_name 'AlertManagementAlertSort'
description 'Values for sorting alerts'
value 'STARTED_AT_ASC', 'Start time by ascending order', value: :started_at_asc
value 'STARTED_AT_DESC', 'Start time by descending order', value: :started_at_desc
value 'ENDED_AT_ASC', 'End time by ascending order', value: :ended_at_asc
value 'ENDED_AT_DESC', 'End time by descending order', value: :ended_at_desc
value 'CREATED_TIME_ASC', 'Created time by ascending order', value: :created_at_asc
value 'CREATED_TIME_DESC', 'Created time by descending order', value: :created_at_desc
value 'UPDATED_TIME_ASC', 'Created time by ascending order', value: :updated_at_asc
value 'UPDATED_TIME_DESC', 'Created time by descending order', value: :updated_at_desc
value 'EVENT_COUNT_ASC', 'Events count by ascending order', value: :event_count_asc
value 'EVENT_COUNT_DESC', 'Events count by descending order', value: :event_count_desc
value 'SEVERITY_ASC', 'Severity from less critical to more critical', value: :severity_asc
value 'SEVERITY_DESC', 'Severity from more critical to less critical', value: :severity_desc
value 'STATUS_ASC', 'Status by order: Ignored > Resolved > Acknowledged > Triggered', value: :status_asc
value 'STATUS_DESC', 'Status by order: Triggered > Acknowledged > Resolved > Ignored', value: :status_desc
value 'STARTED_AT_ASC', 'Start time by ascending order.', value: :started_at_asc
value 'STARTED_AT_DESC', 'Start time by descending order.', value: :started_at_desc
value 'ENDED_AT_ASC', 'End time by ascending order.', value: :ended_at_asc
value 'ENDED_AT_DESC', 'End time by descending order.', value: :ended_at_desc
value 'CREATED_TIME_ASC', 'Created time by ascending order.', value: :created_at_asc
value 'CREATED_TIME_DESC', 'Created time by descending order.', value: :created_at_desc
value 'UPDATED_TIME_ASC', 'Created time by ascending order.', value: :updated_at_asc
value 'UPDATED_TIME_DESC', 'Created time by descending order.', value: :updated_at_desc
value 'EVENT_COUNT_ASC', 'Events count by ascending order.', value: :event_count_asc
value 'EVENT_COUNT_DESC', 'Events count by descending order.', value: :event_count_desc
value 'SEVERITY_ASC', 'Severity from less critical to more critical.', value: :severity_asc
value 'SEVERITY_DESC', 'Severity from more critical to less critical.', value: :severity_desc
value 'STATUS_ASC', 'Status by order: Ignored > Resolved > Acknowledged > Triggered.', value: :status_asc
value 'STATUS_DESC', 'Status by order: Triggered > Acknowledged > Resolved > Ignored.', value: :status_desc
end
end
end
......@@ -6,8 +6,8 @@ module Types
graphql_name 'AlertManagementDomainFilter'
description 'Filters the alerts based on given domain'
value 'operations', description: 'Alerts for operations domain'
value 'threat_monitoring', description: 'Alerts for threat monitoring domain'
value 'operations', description: 'Alerts for operations domain.'
value 'threat_monitoring', description: 'Alerts for threat monitoring domain.'
end
end
end
......@@ -6,8 +6,8 @@ module Types
graphql_name 'AlertManagementIntegrationType'
description 'Values of types of integrations'
value 'PROMETHEUS', 'Prometheus integration', value: :prometheus
value 'HTTP', 'Integration with any monitoring tool', value: :http
value 'PROMETHEUS', 'Prometheus integration.', value: :prometheus
value 'HTTP', 'Integration with any monitoring tool.', value: :http
end
end
end
......@@ -7,8 +7,8 @@ module Types
graphql_name 'CiConfigStatus'
description 'Values for YAML processor result'
value 'VALID', 'The configuration file is valid', value: :valid
value 'INVALID', 'The configuration file is not valid', value: :invalid
value 'VALID', 'The configuration file is valid.', value: :valid
value 'INVALID', 'The configuration file is not valid.', value: :invalid
end
end
end
......
......@@ -5,10 +5,10 @@ module Types
graphql_name 'CommitActionMode'
description 'Mode of a commit action'
value 'CREATE', description: 'Create command', value: :create
value 'DELETE', description: 'Delete command', value: :delete
value 'MOVE', description: 'Move command', value: :move
value 'UPDATE', description: 'Update command', value: :update
value 'CHMOD', description: 'Chmod command', value: :chmod
value 'CREATE', description: 'Create command.', value: :create
value 'DELETE', description: 'Delete command.', value: :delete
value 'MOVE', description: 'Move command.', value: :move
value 'UPDATE', description: 'Update command.', value: :update
value 'CHMOD', description: 'Chmod command.', value: :chmod
end
end
......@@ -4,7 +4,7 @@ module Types
class CommitEncodingEnum < BaseEnum
graphql_name 'CommitEncoding'
value 'TEXT', description: 'Text encoding', value: :text
value 'BASE64', description: 'Base64 encoding', value: :base64
value 'TEXT', description: 'Text encoding.', value: :text
value 'BASE64', description: 'Base64 encoding.', value: :base64
end
end
......@@ -5,7 +5,7 @@ module Types
graphql_name 'ContainerRepositorySort'
description 'Values for sorting container repositories'
value 'NAME_ASC', 'Name by ascending order', value: :name_asc
value 'NAME_DESC', 'Name by descending order', value: :name_desc
value 'NAME_ASC', 'Name by ascending order.', value: :name_asc
value 'NAME_DESC', 'Name by descending order.', value: :name_desc
end
end
......@@ -8,7 +8,7 @@ module Types
NONE = 'NONE'
value NONE, 'No change'
value NONE, 'No change.'
::DesignManagement::Action.events.keys.each do |event_name|
value event_name.upcase, value: event_name, description: "A #{event_name} event"
......
......@@ -6,10 +6,10 @@ module Types
graphql_name 'SentryErrorStatus'
description 'State of a Sentry error'
value 'RESOLVED', value: 'resolved', description: 'Error has been resolved'
value 'RESOLVED_IN_NEXT_RELEASE', value: 'resolvedInNextRelease', description: 'Error has been ignored until next release'
value 'UNRESOLVED', value: 'unresolved', description: 'Error is unresolved'
value 'IGNORED', value: 'ignored', description: 'Error has been ignored'
value 'RESOLVED', value: 'resolved', description: 'Error has been resolved.'
value 'RESOLVED_IN_NEXT_RELEASE', value: 'resolvedInNextRelease', description: 'Error has been ignored until next release.'
value 'UNRESOLVED', value: 'unresolved', description: 'Error is unresolved.'
value 'IGNORED', value: 'ignored', description: 'Error has been ignored.'
end
end
end
......@@ -5,11 +5,11 @@ module Types
graphql_name 'IssuableSort'
description 'Values for sorting issuables'
value 'PRIORITY_ASC', 'Priority by ascending order', value: :priority_asc
value 'PRIORITY_DESC', 'Priority by descending order', value: :priority_desc
value 'LABEL_PRIORITY_ASC', 'Label priority by ascending order', value: :label_priority_asc
value 'LABEL_PRIORITY_DESC', 'Label priority by descending order', value: :label_priority_desc
value 'MILESTONE_DUE_ASC', 'Milestone due date by ascending order', value: :milestone_due_asc
value 'MILESTONE_DUE_DESC', 'Milestone due date by descending order', value: :milestone_due_desc
value 'PRIORITY_ASC', 'Priority by ascending order.', value: :priority_asc
value 'PRIORITY_DESC', 'Priority by descending order.', value: :priority_desc
value 'LABEL_PRIORITY_ASC', 'Label priority by ascending order.', value: :label_priority_asc
value 'LABEL_PRIORITY_DESC', 'Label priority by descending order.', value: :label_priority_desc
value 'MILESTONE_DUE_ASC', 'Milestone due date by ascending order.', value: :milestone_due_asc
value 'MILESTONE_DUE_DESC', 'Milestone due date by descending order.', value: :milestone_due_desc
end
end
......@@ -5,9 +5,9 @@ module Types
graphql_name 'IssuableState'
description 'State of a GitLab issue or merge request'
value 'opened', description: 'In open state'
value 'closed', description: 'In closed state'
value 'locked', description: 'Discussion has been locked'
value 'all', description: 'All available'
value 'opened', description: 'In open state.'
value 'closed', description: 'In closed state.'
value 'locked', description: 'Discussion has been locked.'
value 'all', description: 'All available.'
end
end
......@@ -5,11 +5,11 @@ module Types
graphql_name 'IssueSort'
description 'Values for sorting issues'
value 'DUE_DATE_ASC', 'Due date by ascending order', value: :due_date_asc
value 'DUE_DATE_DESC', 'Due date by descending order', value: :due_date_desc
value 'RELATIVE_POSITION_ASC', 'Relative position by ascending order', value: :relative_position_asc
value 'SEVERITY_ASC', 'Severity from less critical to more critical', value: :severity_asc
value 'SEVERITY_DESC', 'Severity from more critical to less critical', value: :severity_desc
value 'DUE_DATE_ASC', 'Due date by ascending order.', value: :due_date_asc
value 'DUE_DATE_DESC', 'Due date by descending order.', value: :due_date_desc
value 'RELATIVE_POSITION_ASC', 'Relative position by ascending order.', value: :relative_position_asc
value 'SEVERITY_ASC', 'Severity from less critical to more critical.', value: :severity_asc
value 'SEVERITY_DESC', 'Severity from more critical to less critical.', value: :severity_desc
end
end
......
......@@ -5,7 +5,7 @@ module Types
graphql_name 'IssueStateEvent'
description 'Values for issue state events'
value 'REOPEN', 'Reopens the issue', value: 'reopen'
value 'CLOSE', 'Closes the issue', value: 'close'
value 'REOPEN', 'Reopens the issue.', value: 'reopen'
value 'CLOSE', 'Closes the issue.', value: 'close'
end
end
......@@ -5,7 +5,7 @@ module Types
graphql_name 'MergeRequestSort'
description 'Values for sorting merge requests'
value 'MERGED_AT_ASC', 'Merge time by ascending order', value: :merged_at_asc
value 'MERGED_AT_DESC', 'Merge time by descending order', value: :merged_at_desc
value 'MERGED_AT_ASC', 'Merge time by ascending order.', value: :merged_at_asc
value 'MERGED_AT_DESC', 'Merge time by descending order.', value: :merged_at_desc
end
end
......@@ -5,6 +5,6 @@ module Types
graphql_name 'MergeRequestState'
description 'State of a GitLab merge request'
value 'merged', description: "Merge Request has been merged"
value 'merged', description: "Merge Request has been merged."
end
end
......@@ -5,7 +5,7 @@ module Types
graphql_name 'MilestoneStateEnum'
description 'Current state of milestone'
value 'active', description: 'Milestone is currently active'
value 'closed', description: 'Milestone is closed'
value 'active', description: 'Milestone is currently active.'
value 'closed', description: 'Milestone is closed.'
end
end
......@@ -7,8 +7,8 @@ module Types
# Suggested param name for the enum: `operation_mode`
value 'REPLACE', 'Performs a replace operation'
value 'APPEND', 'Performs an append operation'
value 'REMOVE', 'Performs a removal operation'
value 'REPLACE', 'Performs a replace operation.'
value 'APPEND', 'Performs an append operation.'
value 'REMOVE', 'Performs a removal operation.'
end
end
......@@ -6,8 +6,8 @@ module Types
graphql_name 'NamespaceProjectSort'
description 'Values for sorting projects'
value 'SIMILARITY', 'Most similar to the search query', value: :similarity
value 'STORAGE', 'Sort by storage size', value: :storage
value 'SIMILARITY', 'Most similar to the search query.', value: :similarity
value 'STORAGE', 'Sort by storage size.', value: :storage
end
end
end
......@@ -9,10 +9,10 @@ module Types
# Borrowed from Types::SortEnum
# These values/descriptions should stay in-sync as much as possible.
value 'CREATED_DESC', 'Created at descending order', value: :created_desc
value 'CREATED_ASC', 'Created at ascending order', value: :created_asc
value 'CREATED_DESC', 'Created at descending order.', value: :created_desc
value 'CREATED_ASC', 'Created at ascending order.', value: :created_asc
value 'RELEASED_AT_DESC', 'Released at by descending order', value: :released_at_desc
value 'RELEASED_AT_ASC', 'Released at by ascending order', value: :released_at_asc
value 'RELEASED_AT_DESC', 'Released at by descending order.', value: :released_at_desc
value 'RELEASED_AT_ASC', 'Released at by ascending order.', value: :released_at_asc
end
end
......@@ -7,14 +7,14 @@ module Types
# Deprecated, as we prefer uppercase enums
# https://gitlab.com/groups/gitlab-org/-/epics/1838
value 'updated_desc', 'Updated at descending order', value: :updated_desc, deprecated: { reason: 'Use UPDATED_DESC', milestone: '13.5' }
value 'updated_asc', 'Updated at ascending order', value: :updated_asc, deprecated: { reason: 'Use UPDATED_ASC', milestone: '13.5' }
value 'created_desc', 'Created at descending order', value: :created_desc, deprecated: { reason: 'Use CREATED_DESC', milestone: '13.5' }
value 'created_asc', 'Created at ascending order', value: :created_asc, deprecated: { reason: 'Use CREATED_ASC', milestone: '13.5' }
value 'updated_desc', 'Updated at descending order.', value: :updated_desc, deprecated: { reason: 'Use UPDATED_DESC', milestone: '13.5' }
value 'updated_asc', 'Updated at ascending order.', value: :updated_asc, deprecated: { reason: 'Use UPDATED_ASC', milestone: '13.5' }
value 'created_desc', 'Created at descending order.', value: :created_desc, deprecated: { reason: 'Use CREATED_DESC', milestone: '13.5' }
value 'created_asc', 'Created at ascending order.', value: :created_asc, deprecated: { reason: 'Use CREATED_ASC', milestone: '13.5' }
value 'UPDATED_DESC', 'Updated at descending order', value: :updated_desc
value 'UPDATED_ASC', 'Updated at ascending order', value: :updated_asc
value 'CREATED_DESC', 'Created at descending order', value: :created_desc
value 'CREATED_ASC', 'Created at ascending order', value: :created_asc
value 'UPDATED_DESC', 'Updated at descending order.', value: :updated_desc
value 'UPDATED_ASC', 'Updated at ascending order.', value: :updated_asc
value 'CREATED_DESC', 'Created at descending order.', value: :created_desc
value 'CREATED_ASC', 'Created at ascending order.', value: :created_asc
end
end
......@@ -2,11 +2,11 @@
module Types
class TodoTargetEnum < BaseEnum
value 'COMMIT', value: 'Commit', description: 'A Commit'
value 'ISSUE', value: 'Issue', description: 'An Issue'
value 'MERGEREQUEST', value: 'MergeRequest', description: 'A MergeRequest'
value 'DESIGN', value: 'DesignManagement::Design', description: 'A Design'
value 'ALERT', value: 'AlertManagement::Alert', description: 'An Alert'
value 'COMMIT', value: 'Commit', description: 'A Commit.'
value 'ISSUE', value: 'Issue', description: 'An Issue.'
value 'MERGEREQUEST', value: 'MergeRequest', description: 'A MergeRequest.'
value 'DESIGN', value: 'DesignManagement::Design', description: 'A Design.'
value 'ALERT', value: 'AlertManagement::Alert', description: 'An Alert.'
end
end
......
......@@ -5,8 +5,8 @@ module Types
graphql_name 'UserState'
description 'Possible states of a user'
value 'active', 'The user is active and is able to use the system', value: 'active'
value 'blocked', 'The user has been blocked and is prevented from using the system', value: 'blocked'
value 'deactivated', 'The user is no longer active and is unable to use the system', value: 'deactivated'
value 'active', 'The user is active and is able to use the system.', value: 'active'
value 'blocked', 'The user has been blocked and is prevented from using the system.', value: 'blocked'
value 'deactivated', 'The user is no longer active and is unable to use the system.', value: 'deactivated'
end
end
......@@ -4920,24 +4920,24 @@ Values for sorting alerts.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `CREATED_TIME_ASC` | Created time by ascending order |
| `CREATED_TIME_DESC` | Created time by descending order |
| `ENDED_AT_ASC` | End time by ascending order |
| `ENDED_AT_DESC` | End time by descending order |
| `EVENT_COUNT_ASC` | Events count by ascending order |
| `EVENT_COUNT_DESC` | Events count by descending order |
| `SEVERITY_ASC` | Severity from less critical to more critical |
| `SEVERITY_DESC` | Severity from more critical to less critical |
| `STARTED_AT_ASC` | Start time by ascending order |
| `STARTED_AT_DESC` | Start time by descending order |
| `STATUS_ASC` | Status by order: Ignored > Resolved > Acknowledged > Triggered |
| `STATUS_DESC` | Status by order: Triggered > Acknowledged > Resolved > Ignored |
| `UPDATED_ASC` | Updated at ascending order |
| `UPDATED_DESC` | Updated at descending order |
| `UPDATED_TIME_ASC` | Created time by ascending order |
| `UPDATED_TIME_DESC` | Created time by descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `CREATED_TIME_ASC` | Created time by ascending order. |
| `CREATED_TIME_DESC` | Created time by descending order. |
| `ENDED_AT_ASC` | End time by ascending order. |
| `ENDED_AT_DESC` | End time by descending order. |
| `EVENT_COUNT_ASC` | Events count by ascending order. |
| `EVENT_COUNT_DESC` | Events count by descending order. |
| `SEVERITY_ASC` | Severity from less critical to more critical. |
| `SEVERITY_DESC` | Severity from more critical to less critical. |
| `STARTED_AT_ASC` | Start time by ascending order. |
| `STARTED_AT_DESC` | Start time by descending order. |
| `STATUS_ASC` | Status by order: Ignored > Resolved > Acknowledged > Triggered. |
| `STATUS_DESC` | Status by order: Triggered > Acknowledged > Resolved > Ignored. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `UPDATED_TIME_ASC` | Created time by ascending order. |
| `UPDATED_TIME_DESC` | Created time by descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
......@@ -4949,8 +4949,8 @@ Filters the alerts based on given domain.
| Value | Description |
| ----- | ----------- |
| `operations` | Alerts for operations domain |
| `threat_monitoring` | Alerts for threat monitoring domain |
| `operations` | Alerts for operations domain. |
| `threat_monitoring` | Alerts for threat monitoring domain. |
### AlertManagementIntegrationType
......@@ -4958,8 +4958,8 @@ Values of types of integrations.
| Value | Description |
| ----- | ----------- |
| `HTTP` | Integration with any monitoring tool |
| `PROMETHEUS` | Prometheus integration |
| `HTTP` | Integration with any monitoring tool. |
| `PROMETHEUS` | Prometheus integration. |
### AlertManagementPayloadAlertFieldName
......@@ -4984,9 +4984,9 @@ Values for alert field types used in the custom mapping.
| Value | Description |
| ----- | ----------- |
| `ARRAY` | Array field type |
| `DATETIME` | DateTime field type |
| `STRING` | String field type |
| `ARRAY` | Array field type. |
| `DATETIME` | DateTime field type. |
| `STRING` | String field type. |
### AlertManagementSeverity
......@@ -5046,8 +5046,8 @@ Values for YAML processor result.
| Value | Description |
| ----- | ----------- |
| `INVALID` | The configuration file is not valid |
| `VALID` | The configuration file is valid |
| `INVALID` | The configuration file is not valid. |
| `VALID` | The configuration file is valid. |
### CommitActionMode
......@@ -5055,18 +5055,18 @@ Mode of a commit action.
| Value | Description |
| ----- | ----------- |
| `CHMOD` | Chmod command |
| `CREATE` | Create command |
| `DELETE` | Delete command |
| `MOVE` | Move command |
| `UPDATE` | Update command |
| `CHMOD` | Chmod command. |
| `CREATE` | Create command. |
| `DELETE` | Delete command. |
| `MOVE` | Move command. |
| `UPDATE` | Update command. |
### CommitEncoding
| Value | Description |
| ----- | ----------- |
| `BASE64` | Base64 encoding |
| `TEXT` | Text encoding |
| `BASE64` | Base64 encoding. |
| `TEXT` | Text encoding. |
### ContainerExpirationPolicyCadenceEnum
......@@ -5115,12 +5115,12 @@ Values for sorting container repositories.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `NAME_ASC` | Name by ascending order |
| `NAME_DESC` | Name by descending order |
| `UPDATED_ASC` | Updated at ascending order |
| `UPDATED_DESC` | Updated at descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `NAME_ASC` | Name by ascending order. |
| `NAME_DESC` | Name by descending order. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
......@@ -5146,18 +5146,18 @@ Status of a container repository.
| Value | Description |
| ----- | ----------- |
| `FAILED_VALIDATION` | Site validation process finished but failed |
| `INPROGRESS_VALIDATION` | Site validation process is in progress |
| `NONE` | No site validation exists |
| `PASSED_VALIDATION` | Site validation process finished successfully |
| `PENDING_VALIDATION` | Site validation process has not started |
| `FAILED_VALIDATION` | Site validation process finished but failed. |
| `INPROGRESS_VALIDATION` | Site validation process is in progress. |
| `NONE` | No site validation exists. |
| `PASSED_VALIDATION` | Site validation process finished successfully. |
| `PENDING_VALIDATION` | Site validation process has not started. |
### DastSiteValidationStrategyEnum
| Value | Description |
| ----- | ----------- |
| `HEADER` | Header validation |
| `TEXT_FILE` | Text file validation |
| `HEADER` | Header validation. |
| `TEXT_FILE` | Text file validation. |
### DataVisualizationColorEnum
......@@ -5208,7 +5208,7 @@ Mutation event of a design within a version.
| `CREATION` | A creation event |
| `DELETION` | A deletion event |
| `MODIFICATION` | A modification event |
| `NONE` | No change |
| `NONE` | No change. |
### DiffPositionType
......@@ -5235,10 +5235,10 @@ Roadmap sort values.
| Value | Description |
| ----- | ----------- |
| `end_date_asc` | End date at ascending order |
| `end_date_desc` | End date at descending order |
| `start_date_asc` | Start date at ascending order |
| `start_date_desc` | Start date at descending order |
| `end_date_asc` | End date at ascending order. |
| `end_date_desc` | End date at descending order. |
| `start_date_asc` | Start date at ascending order. |
| `start_date_desc` | Start date at descending order. |
### EpicState
......@@ -5256,8 +5256,8 @@ State event of an epic.
| Value | Description |
| ----- | ----------- |
| `CLOSE` | Close the epic |
| `REOPEN` | Reopen the epic |
| `CLOSE` | Close the epic. |
| `REOPEN` | Reopen the epic. |
### EpicWildcardId
......@@ -5265,8 +5265,8 @@ Epic ID wildcard values.
| Value | Description |
| ----- | ----------- |
| `ANY` | Any epic is assigned |
| `NONE` | No epic is assigned |
| `ANY` | Any epic is assigned. |
| `NONE` | No epic is assigned. |
### EventAction
......@@ -5326,10 +5326,10 @@ State of a GitLab issue or merge request.
| Value | Description |
| ----- | ----------- |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `opened` | In open state |
| `all` | All available. |
| `closed` | In closed state. |
| `locked` | Discussion has been locked. |
| `opened` | In open state. |
### IssueSort
......@@ -5337,27 +5337,27 @@ Values for sorting issues.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `DUE_DATE_ASC` | Due date by ascending order |
| `DUE_DATE_DESC` | Due date by descending order |
| `LABEL_PRIORITY_ASC` | Label priority by ascending order |
| `LABEL_PRIORITY_DESC` | Label priority by descending order |
| `MILESTONE_DUE_ASC` | Milestone due date by ascending order |
| `MILESTONE_DUE_DESC` | Milestone due date by descending order |
| `PRIORITY_ASC` | Priority by ascending order |
| `PRIORITY_DESC` | Priority by descending order |
| `PUBLISHED_ASC` | Published issues shown last |
| `PUBLISHED_DESC` | Published issues shown first |
| `RELATIVE_POSITION_ASC` | Relative position by ascending order |
| `SEVERITY_ASC` | Severity from less critical to more critical |
| `SEVERITY_DESC` | Severity from more critical to less critical |
| `SLA_DUE_AT_ASC` | Issues with earliest SLA due time shown first |
| `SLA_DUE_AT_DESC` | Issues with latest SLA due time shown first |
| `UPDATED_ASC` | Updated at ascending order |
| `UPDATED_DESC` | Updated at descending order |
| `WEIGHT_ASC` | Weight by ascending order |
| `WEIGHT_DESC` | Weight by descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `DUE_DATE_ASC` | Due date by ascending order. |
| `DUE_DATE_DESC` | Due date by descending order. |
| `LABEL_PRIORITY_ASC` | Label priority by ascending order. |
| `LABEL_PRIORITY_DESC` | Label priority by descending order. |
| `MILESTONE_DUE_ASC` | Milestone due date by ascending order. |
| `MILESTONE_DUE_DESC` | Milestone due date by descending order. |
| `PRIORITY_ASC` | Priority by ascending order. |
| `PRIORITY_DESC` | Priority by descending order. |
| `PUBLISHED_ASC` | Published issues shown last. |
| `PUBLISHED_DESC` | Published issues shown first. |
| `RELATIVE_POSITION_ASC` | Relative position by ascending order. |
| `SEVERITY_ASC` | Severity from less critical to more critical. |
| `SEVERITY_DESC` | Severity from more critical to less critical. |
| `SLA_DUE_AT_ASC` | Issues with earliest SLA due time shown first. |
| `SLA_DUE_AT_DESC` | Issues with latest SLA due time shown first. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `WEIGHT_ASC` | Weight by ascending order. |
| `WEIGHT_DESC` | Weight by descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
......@@ -5369,10 +5369,10 @@ State of a GitLab issue.
| Value | Description |
| ----- | ----------- |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `opened` | In open state |
| `all` | All available. |
| `closed` | In closed state. |
| `locked` | Discussion has been locked. |
| `opened` | In open state. |
### IssueStateEvent
......@@ -5380,8 +5380,8 @@ Values for issue state events.
| Value | Description |
| ----- | ----------- |
| `CLOSE` | Closes the issue |
| `REOPEN` | Reopens the issue |
| `CLOSE` | Closes the issue. |
| `REOPEN` | Reopens the issue. |
### IssueType
......@@ -5411,9 +5411,9 @@ Iteration ID wildcard values.
| Value | Description |
| ----- | ----------- |
| `ANY` | An iteration is assigned |
| `CURRENT` | Current iteration |
| `NONE` | No iteration is assigned |
| `ANY` | An iteration is assigned. |
| `CURRENT` | Current iteration. |
| `NONE` | No iteration is assigned. |
### JobArtifactFileType
......@@ -5463,16 +5463,16 @@ Possible identifier types for a measurement.
| Value | Description |
| ----- | ----------- |
| `GROUPS` | Group count |
| `ISSUES` | Issue count |
| `MERGE_REQUESTS` | Merge request count |
| `PIPELINES` | Pipeline count |
| `PIPELINES_CANCELED` | Pipeline count with canceled status |
| `PIPELINES_FAILED` | Pipeline count with failed status |
| `PIPELINES_SKIPPED` | Pipeline count with skipped status |
| `PIPELINES_SUCCEEDED` | Pipeline count with success status |
| `PROJECTS` | Project count |
| `USERS` | User count |
| `GROUPS` | Group count. |
| `ISSUES` | Issue count. |
| `MERGE_REQUESTS` | Merge request count. |
| `PIPELINES` | Pipeline count. |
| `PIPELINES_CANCELED` | Pipeline count with canceled status. |
| `PIPELINES_FAILED` | Pipeline count with failed status. |
| `PIPELINES_SKIPPED` | Pipeline count with skipped status. |
| `PIPELINES_SUCCEEDED` | Pipeline count with success status. |
| `PROJECTS` | Project count. |
| `USERS` | User count. |
### MergeRequestNewState
......@@ -5489,18 +5489,18 @@ Values for sorting merge requests.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `LABEL_PRIORITY_ASC` | Label priority by ascending order |
| `LABEL_PRIORITY_DESC` | Label priority by descending order |
| `MERGED_AT_ASC` | Merge time by ascending order |
| `MERGED_AT_DESC` | Merge time by descending order |
| `MILESTONE_DUE_ASC` | Milestone due date by ascending order |
| `MILESTONE_DUE_DESC` | Milestone due date by descending order |
| `PRIORITY_ASC` | Priority by ascending order |
| `PRIORITY_DESC` | Priority by descending order |
| `UPDATED_ASC` | Updated at ascending order |
| `UPDATED_DESC` | Updated at descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `LABEL_PRIORITY_ASC` | Label priority by ascending order. |
| `LABEL_PRIORITY_DESC` | Label priority by descending order. |
| `MERGED_AT_ASC` | Merge time by ascending order. |
| `MERGED_AT_DESC` | Merge time by descending order. |
| `MILESTONE_DUE_ASC` | Milestone due date by ascending order. |
| `MILESTONE_DUE_DESC` | Milestone due date by descending order. |
| `PRIORITY_ASC` | Priority by ascending order. |
| `PRIORITY_DESC` | Priority by descending order. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
......@@ -5512,11 +5512,11 @@ State of a GitLab merge request.
| Value | Description |
| ----- | ----------- |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `merged` | Merge Request has been merged |
| `opened` | In open state |
| `all` | All available. |
| `closed` | In closed state. |
| `locked` | Discussion has been locked. |
| `merged` | Merge Request has been merged. |
| `opened` | In open state. |
### MilestoneStateEnum
......@@ -5524,8 +5524,8 @@ Current state of milestone.
| Value | Description |
| ----- | ----------- |
| `active` | Milestone is currently active |
| `closed` | Milestone is closed |
| `active` | Milestone is currently active. |
| `closed` | Milestone is closed. |
### MoveType
......@@ -5533,8 +5533,8 @@ The position to which the adjacent object should be moved.
| Value | Description |
| ----- | ----------- |
| `after` | The adjacent object will be moved after the object that is being moved |
| `before` | The adjacent object will be moved before the object that is being moved |
| `after` | The adjacent object will be moved after the object that is being moved. |
| `before` | The adjacent object will be moved before the object that is being moved. |
### MutationOperationMode
......@@ -5542,9 +5542,9 @@ Different toggles for changing mutator behavior.
| Value | Description |
| ----- | ----------- |
| `APPEND` | Performs an append operation |
| `REMOVE` | Performs a removal operation |
| `REPLACE` | Performs a replace operation |
| `APPEND` | Performs an append operation. |
| `REMOVE` | Performs a removal operation. |
| `REPLACE` | Performs a replace operation. |
### NamespaceProjectSort
......@@ -5552,8 +5552,8 @@ Values for sorting projects.
| Value | Description |
| ----- | ----------- |
| `SIMILARITY` | Most similar to the search query |
| `STORAGE` | Sort by storage size |
| `SIMILARITY` | Most similar to the search query. |
| `STORAGE` | Sort by storage size. |
### OncallRotationUnitEnum
......@@ -5627,10 +5627,10 @@ State of a Geo registry.
| Value | Description |
| ----- | ----------- |
| `FAILED` | Registry that failed to sync |
| `PENDING` | Registry waiting to be synced |
| `STARTED` | Registry currently syncing |
| `SYNCED` | Registry that is synced |
| `FAILED` | Registry that failed to sync. |
| `PENDING` | Registry waiting to be synced. |
| `STARTED` | Registry currently syncing. |
| `SYNCED` | Registry that is synced. |
### ReleaseAssetLinkType
......@@ -5649,10 +5649,10 @@ Values for sorting releases.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `RELEASED_AT_ASC` | Released at by ascending order |
| `RELEASED_AT_DESC` | Released at by descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `RELEASED_AT_ASC` | Released at by ascending order. |
| `RELEASED_AT_DESC` | Released at by descending order. |
### RequirementState
......@@ -5715,10 +5715,10 @@ State of a Sentry error.
| Value | Description |
| ----- | ----------- |
| `IGNORED` | Error has been ignored |
| `RESOLVED` | Error has been resolved |
| `RESOLVED_IN_NEXT_RELEASE` | Error has been ignored until next release |
| `UNRESOLVED` | Error is unresolved |
| `IGNORED` | Error has been ignored. |
| `RESOLVED` | Error has been resolved. |
| `RESOLVED_IN_NEXT_RELEASE` | Error has been ignored until next release. |
| `UNRESOLVED` | Error is unresolved. |
### ServiceType
......@@ -5778,10 +5778,10 @@ Common sort values.
| Value | Description |
| ----- | ----------- |
| `CREATED_ASC` | Created at ascending order |
| `CREATED_DESC` | Created at descending order |
| `UPDATED_ASC` | Updated at ascending order |
| `UPDATED_DESC` | Updated at descending order |
| `CREATED_ASC` | Created at ascending order. |
| `CREATED_DESC` | Created at descending order. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
......@@ -5819,12 +5819,12 @@ State of a test report.
| Value | Description |
| ----- | ----------- |
| `ALERT` | An Alert |
| `COMMIT` | A Commit |
| `DESIGN` | A Design |
| `EPIC` | An Epic |
| `ISSUE` | An Issue |
| `MERGEREQUEST` | A MergeRequest |
| `ALERT` | An Alert. |
| `COMMIT` | A Commit. |
| `DESIGN` | A Design. |
| `EPIC` | An Epic. |
| `ISSUE` | An Issue. |
| `MERGEREQUEST` | A MergeRequest. |
### TypeEnum
......@@ -5839,9 +5839,9 @@ Possible states of a user.
| Value | Description |
| ----- | ----------- |
| `active` | The user is active and is able to use the system |
| `blocked` | The user has been blocked and is prevented from using the system |
| `deactivated` | The user is no longer active and is unable to use the system |
| `active` | The user is active and is able to use the system. |
| `blocked` | The user has been blocked and is prevented from using the system. |
| `deactivated` | The user is no longer active and is unable to use the system. |
### VisibilityLevelsEnum
......@@ -5941,16 +5941,16 @@ Vulnerability sort values.
| Value | Description |
| ----- | ----------- |
| `detected_asc` | Detection timestamp in ascending order |
| `detected_desc` | Detection timestamp in descending order |
| `report_type_asc` | Report Type in ascending order |
| `report_type_desc` | Report Type in descending order |
| `severity_asc` | Severity in ascending order |
| `severity_desc` | Severity in descending order |
| `state_asc` | State in ascending order |
| `state_desc` | State in descending order |
| `title_asc` | Title in ascending order |
| `title_desc` | Title in descending order |
| `detected_asc` | Detection timestamp in ascending order. |
| `detected_desc` | Detection timestamp in descending order. |
| `report_type_asc` | Report Type in ascending order. |
| `report_type_desc` | Report Type in descending order. |
| `severity_asc` | Severity in ascending order. |
| `severity_desc` | Severity in descending order. |
| `state_asc` | State in ascending order. |
| `state_desc` | State in descending order. |
| `title_asc` | Title in ascending order. |
| `title_desc` | Title in descending order. |
### VulnerabilityState
......
......@@ -6,12 +6,12 @@ module EE
extend ActiveSupport::Concern
prepended do
value 'WEIGHT_ASC', 'Weight by ascending order', value: 'weight_asc'
value 'WEIGHT_DESC', 'Weight by descending order', value: 'weight_desc'
value 'PUBLISHED_ASC', 'Published issues shown last', value: :published_asc
value 'PUBLISHED_DESC', 'Published issues shown first', value: :published_desc
value 'SLA_DUE_AT_ASC', 'Issues with earliest SLA due time shown first', value: :sla_due_at_asc
value 'SLA_DUE_AT_DESC', 'Issues with latest SLA due time shown first', value: :sla_due_at_desc
value 'WEIGHT_ASC', 'Weight by ascending order.', value: 'weight_asc'
value 'WEIGHT_DESC', 'Weight by descending order.', value: 'weight_desc'
value 'PUBLISHED_ASC', 'Published issues shown last.', value: :published_asc
value 'PUBLISHED_DESC', 'Published issues shown first.', value: :published_desc
value 'SLA_DUE_AT_ASC', 'Issues with earliest SLA due time shown first.', value: :sla_due_at_asc
value 'SLA_DUE_AT_DESC', 'Issues with latest SLA due time shown first.', value: :sla_due_at_desc
end
end
end
......
......@@ -6,7 +6,7 @@ module EE
extend ActiveSupport::Concern
prepended do
value 'EPIC', value: 'Epic', description: 'An Epic'
value 'EPIC', value: 'Epic', description: 'An Epic.'
end
end
end
......
......@@ -6,9 +6,9 @@ module Types
graphql_name 'AlertManagementPayloadAlertFieldType'
description 'Values for alert field types used in the custom mapping'
value 'ARRAY', 'Array field type', value: 'array'
value 'DATETIME', 'DateTime field type', value: 'datetime'
value 'STRING', 'String field type', value: 'string'
value 'ARRAY', 'Array field type.', value: 'array'
value 'DATETIME', 'DateTime field type.', value: 'datetime'
value 'STRING', 'String field type.', value: 'string'
end
end
end
......@@ -6,8 +6,8 @@ module Types
graphql_name 'EpicWildcardId'
description 'Epic ID wildcard values'
value 'NONE', 'No epic is assigned'
value 'ANY', 'Any epic is assigned'
value 'NONE', 'No epic is assigned.'
value 'ANY', 'Any epic is assigned.'
end
end
end
......@@ -6,9 +6,9 @@ module Types
graphql_name 'IterationWildcardId'
description 'Iteration ID wildcard values'
value 'NONE', 'No iteration is assigned'
value 'ANY', 'An iteration is assigned'
value 'CURRENT', 'Current iteration'
value 'NONE', 'No iteration is assigned.'
value 'ANY', 'An iteration is assigned.'
value 'CURRENT', 'Current iteration.'
end
end
end
......@@ -2,10 +2,10 @@
module Types
class DastSiteProfileValidationStatusEnum < BaseEnum
value 'NONE', value: DastSiteValidation::NONE_STATE, description: 'No site validation exists'
value 'PENDING_VALIDATION', value: 'pending', description: 'Site validation process has not started'
value 'INPROGRESS_VALIDATION', value: 'inprogress', description: 'Site validation process is in progress'
value 'PASSED_VALIDATION', value: 'passed', description: 'Site validation process finished successfully'
value 'FAILED_VALIDATION', value: 'failed', description: 'Site validation process finished but failed'
value 'NONE', value: DastSiteValidation::NONE_STATE, description: 'No site validation exists.'
value 'PENDING_VALIDATION', value: 'pending', description: 'Site validation process has not started.'
value 'INPROGRESS_VALIDATION', value: 'inprogress', description: 'Site validation process is in progress.'
value 'PASSED_VALIDATION', value: 'passed', description: 'Site validation process finished successfully.'
value 'FAILED_VALIDATION', value: 'failed', description: 'Site validation process finished but failed.'
end
end
......@@ -2,7 +2,7 @@
module Types
class DastSiteValidationStrategyEnum < BaseEnum
value 'TEXT_FILE', description: 'Text file validation', value: 'text_file'
value 'HEADER', description: 'Header validation', value: 'header'
value 'TEXT_FILE', description: 'Text file validation.', value: 'text_file'
value 'HEADER', description: 'Header validation.', value: 'header'
end
end
......@@ -5,9 +5,9 @@ module Types
graphql_name 'EpicSort'
description 'Roadmap sort values'
value 'start_date_desc', 'Start date at descending order'
value 'start_date_asc', 'Start date at ascending order'
value 'end_date_desc', 'End date at descending order'
value 'end_date_asc', 'End date at ascending order'
value 'start_date_desc', 'Start date at descending order.'
value 'start_date_asc', 'Start date at ascending order.'
value 'end_date_desc', 'End date at descending order.'
value 'end_date_asc', 'End date at ascending order.'
end
end
......@@ -5,7 +5,7 @@ module Types
graphql_name 'EpicStateEvent'
description 'State event of an epic'
value 'REOPEN', value: 'reopen', description: 'Reopen the epic'
value 'CLOSE', value: 'close', description: 'Close the epic'
value 'REOPEN', value: 'reopen', description: 'Reopen the epic.'
value 'CLOSE', value: 'close', description: 'Close the epic.'
end
end
......@@ -6,10 +6,10 @@ module Types
graphql_name 'RegistryState'
description 'State of a Geo registry'
value 'PENDING', value: :pending, description: 'Registry waiting to be synced'
value 'STARTED', value: :started, description: 'Registry currently syncing'
value 'SYNCED', value: :synced, description: 'Registry that is synced'
value 'FAILED', value: :failed, description: 'Registry that failed to sync'
value 'PENDING', value: :pending, description: 'Registry waiting to be synced.'
value 'STARTED', value: :started, description: 'Registry currently syncing.'
value 'SYNCED', value: :synced, description: 'Registry that is synced.'
value 'FAILED', value: :failed, description: 'Registry that failed to sync.'
end
end
end
......@@ -5,7 +5,7 @@ module Types
graphql_name 'MoveType'
description 'The position to which the adjacent object should be moved'
value 'before', 'The adjacent object will be moved before the object that is being moved'
value 'after', 'The adjacent object will be moved after the object that is being moved'
value 'before', 'The adjacent object will be moved before the object that is being moved.'
value 'after', 'The adjacent object will be moved after the object that is being moved.'
end
end
......@@ -5,15 +5,15 @@ module Types
graphql_name 'VulnerabilitySort'
description 'Vulnerability sort values'
value 'severity_desc', 'Severity in descending order'
value 'severity_asc', 'Severity in ascending order'
value 'title_desc', 'Title in descending order'
value 'title_asc', 'Title in ascending order'
value 'detected_desc', 'Detection timestamp in descending order'
value 'detected_asc', 'Detection timestamp in ascending order'
value 'report_type_desc', 'Report Type in descending order'
value 'report_type_asc', 'Report Type in ascending order'
value 'state_desc', 'State in descending order'
value 'state_asc', 'State in ascending order'
value 'severity_desc', 'Severity in descending order.'
value 'severity_asc', 'Severity in ascending order.'
value 'title_desc', 'Title in descending order.'
value 'title_asc', 'Title in ascending order.'
value 'detected_desc', 'Detection timestamp in descending order.'
value 'detected_asc', 'Detection timestamp in ascending order.'
value 'report_type_desc', 'Report Type in descending order.'
value 'report_type_asc', 'Report Type in ascending order.'
value 'state_desc', 'State in descending order.'
value 'state_asc', 'State in ascending order.'
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