aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/admin_user.go
blob: a442b8fe9cc628c935ad17db8cfe372c7b88135e (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"
)

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