Module manage :: Class AlterUserCommand
[hide private]
[frames] | no frames]

type AlterUserCommand

source code


Instance Methods [hide private]
 
run(self, name, **kwargs)
Runs a command.
source code

Inherited from flask_script.commands.Command: __call__, __init__, add_option, create_parser, get_options

Class Variables [hide private]
  option_list = Option("name"), Group(Option("--admin", action= ...

Inherited from flask_script.commands.Command: help_args

Properties [hide private]

Inherited from flask_script.commands.Command: description

Method Details [hide private]

run(self, name, **kwargs)

source code 

Runs a command. This must be implemented by the subclass. Should take arguments as configured by the Command options.

Overrides: flask_script.commands.Command.run
(inherited documentation)

Class Variable Details [hide private]

option_list

Value:
Option("name"), Group(Option("--admin", action= "store_true"), Option(\
"--no-admin", action= "store_true"), exclusive= True), Group(Option("-\
-proven", action= "store_true"), Option("--no-proven", action= "store_\
true"), exclusive= True), Group(Option("--proxy", action= "store_true"\
), Option("--no-proxy", action= "store_true"), exclusive= True)