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

Remove defunct "download" route in Files pointing to nonexistent controller

Summary:
Depends on D19154. Ref T13094. This controller was removed at some point and this route no longer works.

I plan to add a new `download/` route to let us tighten the `form-action` Content Security Policy.

Test Plan: Grepped for the route and controller, no hits.

Maniphest Tasks: T13094

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

-1
-1
src/applications/files/application/PhabricatorFilesApplication.php
··· 86 86 'PhabricatorFileTransformListController', 87 87 'uploaddialog/(?P<single>single/)?' 88 88 => 'PhabricatorFileUploadDialogController', 89 - 'download/(?P<phid>[^/]+)/' => 'PhabricatorFileDialogController', 90 89 'iconset/(?P<key>[^/]+)/' => array( 91 90 'select/' => 'PhabricatorFileIconSetSelectController', 92 91 ),