1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-21 22:32:41 +01:00

Drop intended support for "--anonymous" from Arcanist Toolsets

Summary:
Currently, modern "arc" workflows accept and parse "--anonymous" but don't do anything with it.

I intend to move away from anonymous workflows, which only really supported a tiny subset of unusual workflows on open source installs but added significant complexity to login/auth behavior.

Drop support for this flag.

Test Plan: Grepped for "anonymous", didn't turn up any relevant hits.

Differential Revision: https://secure.phabricator.com/D21386
This commit is contained in:
epriestley 2020-07-01 05:50:13 -07:00
parent 17f2668d1f
commit 65e4927dca

View file

@ -16,10 +16,6 @@ final class ArcanistArcToolset extends ArcanistToolset {
'param' => 'token', 'param' => 'token',
'help' => pht('Use a specific authentication token.'), 'help' => pht('Use a specific authentication token.'),
), ),
array(
'name' => 'anonymous',
'help' => pht('Run workflow as a public user, without authenticating.'),
),
); );
} }