@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<?php
2
3final class PhabricatorRefreshCSRFController extends PhabricatorAuthController {
4
5 public function handleRequest(AphrontRequest $request) {
6 $viewer = $this->getViewer();
7
8 return id(new AphrontAjaxResponse())
9 ->setContent(
10 array(
11 'token' => $viewer->getCSRFToken(),
12 ));
13 }
14
15}