HomePhabricator

Allow "Change Subtype" to be selected from the comment action stack

Description

Allow "Change Subtype" to be selected from the comment action stack

Summary:
Ref T13222. See PHI683. Currently, you can "Change subtype..." via Conduit and the bulk editor, but not via the comment action stack or edit forms.

In PHI683 an install is doing this often enough that they'd like it to become a first-class action. I've generally been cautious about pushing this action to become a first-class action (there are some inevitable rough edges and I don't want to add too much complexity if there isn't a use case for it) but since we have evidence that users would find it useful and nothing has exploded yet, I'm comfortable taking another step forward.

Currently, EditEngine has this sort of weird setIsConduitOnly() method. This actually means more like "this doesn't show up on forms". Make it better align with that. In particular, a "conduit only" field can already show up in the bulk editor, which is goofy. Change this to setIsFormField() and convert/simplify existing callsites.

Test Plan:
There are a lot of ways to reach EditEngine so this probably isn't entirely exhaustive, but I think I got pretty much anything which is likely to break:

  • Searched for setIsConduitOnly() and getIsConduitOnly(), converted all callsites to setIsFormField().
  • Searched for setIsLockable(), setIsReorderable() and setIsDefaultable() and aligned these calls to intent where applicable.
  • Created an Almanac binding.
  • Edited an Almanac binding.
  • Created an Almanac service.
  • Edited an Almanac service.
  • Edited a binding property.
  • Deleted a binding property.
  • Created and edited a badge.
  • Awarded and revoked a badge.
  • Created and edited an event.
  • Made an event recurring.
  • Created and edited a Conpherence thread.
  • Edited and updated the diff for a revision.
  • Created and edited a repository.
  • Created and disabled repository URIs.
  • Created and edited a blueprint.
  • Created and edited tasks.
  • Created a paste, edited/archived a paste.
  • Created/edited/archived a package.
  • Created/edited a project.
  • Made comments.
  • Moved tasks on workboards via comment action stack.
  • Changed task subtype via comment action stack.

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13222

Differential Revision: https://secure.phabricator.com/D19842