* feat(cli): add command to forcefully reset password * feat(deploy): update authelia image to version 0.2.43 and add verbosity to system provider logs * lldap image tag * fix: update lldap to 0.0.16 --------- Co-authored-by: eball <liuy102@hotmail.com> Co-authored-by: hys <hysyeah@gmail.com>
19 lines
445 B
Go
19 lines
445 B
Go
package user
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func NewUserCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "user",
|
|
Short: "user management operations",
|
|
}
|
|
cmd.AddCommand(NewCmdCreateUser())
|
|
cmd.AddCommand(NewCmdDeleteUser())
|
|
cmd.AddCommand(NewCmdListUsers())
|
|
cmd.AddCommand(NewCmdGetUser())
|
|
cmd.AddCommand(NewCmdActivateUser())
|
|
cmd.AddCommand(NewCmdResetPassword())
|
|
// cmd.AddCommand(NewCmdUpdateUserLimits())
|
|
return cmd
|
|
}
|