// Copyright (c) 2020 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package cmd56import (7"context"89"github.com/spf13/cobra"10)1112// usersUnblockCmd represents the describe command13var usersUnblockCmd = &cobra.Command{14Use: "unblock <userID> ... <userID>",15Short: "unblocks a user",16Args: cobra.MinimumNArgs(1),17Run: func(cmd *cobra.Command, args []string) {18ctx, cancel := context.WithCancel(context.Background())19defer cancel()20blockUser(ctx, args, false)21},22}2324func init() {25usersCmd.AddCommand(usersUnblockCmd)26}272829