Class: SolidusGraphqlApi::Mutations::Checkout::CompleteCheckout

Inherits:
BaseMutation
  • Object
show all
Defined in:
lib/solidus_graphql_api/mutations/checkout/complete_checkout.rb

Instance Method Summary collapse

Instance Method Details

#authorized?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/solidus_graphql_api/mutations/checkout/complete_checkout.rb', line 21

def authorized?
  current_order.can_complete?
end

#ready?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/solidus_graphql_api/mutations/checkout/complete_checkout.rb', line 25

def ready?(*)
  current_ability.authorize!(:update, current_order, guest_token)
end

#resolveObject



12
13
14
15
16
17
18
19
# File 'lib/solidus_graphql_api/mutations/checkout/complete_checkout.rb', line 12

def resolve
  current_order.complete

  {
    order: current_order.reload,
    errors: user_errors("order", current_order.errors)
  }
end