summaryrefslogtreecommitdiffstats
path: root/cmd/admin_user.go
blob: 967a6ed88a22a119635f96abc39621df75d6f8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package cmd

import (
	"github.com/urfave/cli/v2"
)

var subcmdUser = &cli.Command{
	Name:  "user",
	Usage: "Modify users",
	Subcommands: []*cli.Command{
		microcmdUserCreate,
		microcmdUserList,
		microcmdUserChangePassword,
		microcmdUserDelete,
		microcmdUserGenerateAccessToken,
		microcmdUserMustChangePassword,
	},
}