@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.

Attach credential impelementations when initializing new credentials

Summary: Fixes T10651.

Test Plan: Created a new API token credential.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10651

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

+2 -1
+2 -1
src/applications/passphrase/controller/PassphraseCredentialEditController.php
··· 36 36 37 37 $credential = PassphraseCredential::initializeNewCredential($viewer) 38 38 ->setCredentialType($type->getCredentialType()) 39 - ->setProvidesType($type->getProvidesType()); 39 + ->setProvidesType($type->getProvidesType()) 40 + ->attachImplementation($type); 40 41 41 42 $is_new = true; 42 43