Give Phame blogs mutable interact policies
[phabricator.git] / scripts / setup / manage_user.php
blobf571cb9346f6860a89c85f15fd5e25c86e65b517
1 #!/usr/bin/env php
2 <?php
4 $root = dirname(dirname(dirname(__FILE__)));
5 require_once $root.'/scripts/__init_script__.php';
7 $args = new PhutilArgumentParser($argv);
8 $args->setSynopsis(<<<EOSYNOPSIS
9 **user** __command__ [__options__]
10 Modify user accounts to regain access to an install.
12 EOSYNOPSIS
14 $args->parseStandardArguments();
16 $workflows = id(new PhutilClassMapQuery())
17 ->setAncestorClass('PhabricatorPeopleManagementWorkflow')
18 ->execute();
19 $workflows[] = new PhutilHelpArgumentWorkflow();
20 $args->parseWorkflows($workflows);