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

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