Class: Resolvers::WorkItems::UserPreferenceResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
Gitlab::Graphql::Authorize::AuthorizeResource
Defined in:
app/graphql/resolvers/work_items/user_preference_resolver.rb

Constant Summary

Constants included from Gitlab::Graphql::Authorize::AuthorizeResource

Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR

Instance Method Summary collapse

Methods included from Gitlab::Graphql::Authorize::AuthorizeResource

#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!

Methods inherited from BaseResolver

as_single, authorization, authorized?, before_connection_authorization, before_connection_authorization_block, calculate_ext_conn_complexity, calls_gitaly!, calls_gitaly?, complexity, complexity_multiplier, #current_user, last, #object, #offset_pagination, requires_argument!, requires_argument?, resolver_complexity, #select_result, single, #single?, single_definition_blocks, singular_type, when_single

Methods included from Gitlab::Utils::Override

#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!

Instance Method Details

#resolve(namespace_path:, work_item_type_id: nil) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'app/graphql/resolvers/work_items/user_preference_resolver.rb', line 22

def resolve(namespace_path:, work_item_type_id: nil)
  namespace = ::Routable.find_by_full_path(namespace_path)
  namespace = namespace.project_namespace if namespace.is_a?(Project)
  authorize!(namespace)

  work_item_type_id = work_item_type_id&.model_id

  ::WorkItems::UserPreference.find_by_user_namespace_and_work_item_type_id(
    current_user,
    namespace,
    work_item_type_id
  )
end