This write should also be unguarded, it is not vulnerable to CSRF.
This commit is contained in:
parent
88eb6410b3
commit
90be65f6ec
|
@ -48,7 +48,10 @@ class PhabricatorRepositoryEditController
|
|||
if (!$repository->getDetail('github-token')) {
|
||||
$token = substr(base64_encode(Filesystem::readRandomBytes(8)), 0, 8);
|
||||
$repository->setDetail('github-token', $token);
|
||||
|
||||
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
|
||||
$repository->save();
|
||||
unset($unguarded);
|
||||
}
|
||||
|
||||
$views['github'] = 'GitHub';
|
||||
|
|
Loading…
Reference in a new issue