1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 21:32:43 +01:00

Quicksand - add phame live URLs to quicksand blacklist

Summary: Fixes T8160. AFAIK this is the only route pattern that needs blacklisting. Double checked that the resource controller is good to go; it is because its a celerity resource controller descendant and returns data differently than normal controllers

Test Plan: Clicked "view live" on a block. Read a few posts. Clicked into a post and read it. Clicked an image and it linked to the image.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8160

Differential Revision: https://secure.phabricator.com/D12817
This commit is contained in:
Bob Trahan 2015-05-12 14:44:47 -07:00
parent 048eb6cf61
commit 7bfbc46a63

View file

@ -69,4 +69,10 @@ final class PhabricatorPhameApplication extends PhabricatorApplication {
); );
} }
public function getQuicksandURIPatternBlacklist() {
return array(
'/phame/live/.*',
);
}
} }