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

Don't require admin privileges to verify email addresses

Summary: Fixes T2821. In D5386 we locked most of this app down, but missed one controller which needs to be accessible by non-admins (this controller should probably be in some other app, like auth, in the long term).

Test Plan: @shanemhansen confirmed this fixed his install

Reviewers: chad, AnhNhan

Reviewed By: chad

CC: shanemhansen, aran

Maniphest Tasks: T2821

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

+4
+4
src/applications/people/controller/PhabricatorEmailVerificationController.php
··· 9 9 $this->code = $data['code']; 10 10 } 11 11 12 + public function shouldRequireAdmin() { 13 + return false; 14 + } 15 + 12 16 public function shouldRequireEmailVerification() { 13 17 // Since users need to be able to hit this endpoint in order to verify 14 18 // email, we can't ever require email verification here.