Select the types of activity you want to include in your feed.
@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
···1010 public function processRequest() {
1111 $request = $this->getRequest();
12121313- if (!PhabricatorAuthProviderPassword::getPasswordProvider()) {
1313+ if (!PhabricatorPasswordAuthProvider::getPasswordProvider()) {
1414 return new Aphront400Response();
1515 }
1616
···149149 /**
150150 * Should we allow the adapter to be marked as "trusted"
151151 * This is true for all adapters except those that allow the user to type in
152152- * emails (@see PhabricatorAuthProviderPassword)
152152+ * emails (@see PhabricatorPasswordAuthProvider)
153153 */
154154 public function shouldAllowEmailTrustConfiguration() {
155155 return true;
···25252626 // ...or this install doesn't support password authentication at all.
27272828- if (!PhabricatorAuthProviderPassword::getPasswordProvider()) {
2828+ if (!PhabricatorPasswordAuthProvider::getPasswordProvider()) {
2929 return false;
3030 }
3131