Skip to content

Commit

Permalink
Merge pull request #401 from authorizerdev/fix/deactivate-acc
Browse files Browse the repository at this point in the history
Fix calling deactivate acc
  • Loading branch information
lakhansamani authored Oct 12, 2023
2 parents 7ced811 + f906fb7 commit e941e48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/graph/schema.resolvers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package graph

import (
"context"
"fmt"

"github.com/authorizerdev/authorizer/server/graph/generated"
"github.com/authorizerdev/authorizer/server/graph/model"
Expand Down Expand Up @@ -84,7 +83,7 @@ func (r *mutationResolver) ResendOtp(ctx context.Context, params model.ResendOTP

// DeactivateAccount is the resolver for the deactivate_account field.
func (r *mutationResolver) DeactivateAccount(ctx context.Context) (*model.Response, error) {
panic(fmt.Errorf("not implemented: DeactivateAccount - deactivate_account"))
return resolvers.DeactivateAccountResolver(ctx)
}

// DeleteUser is the resolver for the _delete_user field.
Expand Down

0 comments on commit e941e48

Please sign in to comment.