@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make Passphrase Credentials Flaggable

Summary: Ref T8888, Makes Passphrase credentials flaggable.

Test Plan: Flag a credential

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8888

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

+3
+1
src/__phutil_library_map__.php
··· 5060 5060 'PassphraseDAO', 5061 5061 'PhabricatorApplicationTransactionInterface', 5062 5062 'PhabricatorPolicyInterface', 5063 + 'PhabricatorFlaggableInterface', 5063 5064 'PhabricatorDestructibleInterface', 5064 5065 'PhabricatorSpacesInterface', 5065 5066 ),
+1
src/applications/passphrase/controller/PassphraseCredentialViewController.php
··· 96 96 97 97 $actions = id(new PhabricatorActionListView()) 98 98 ->setObjectURI('/K'.$id) 99 + ->setObject($credential) 99 100 ->setUser($viewer); 100 101 101 102 $can_edit = PhabricatorPolicyFilter::hasCapability(
+1
src/applications/passphrase/storage/PassphraseCredential.php
··· 4 4 implements 5 5 PhabricatorApplicationTransactionInterface, 6 6 PhabricatorPolicyInterface, 7 + PhabricatorFlaggableInterface, 7 8 PhabricatorDestructibleInterface, 8 9 PhabricatorSpacesInterface { 9 10