mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Remove admin requirement from MetaMTASendGridReceiveController
Summary: This got caught in the crossfire when we admin-only'd the whole MetaMTA tool. It should not be admin only. (Generally, we should probably separate this out better at some point.) Test Plan: Hit /mail/sendgrid/ as a logged-out, non-admin user (like SendGrid does). Reviewers: s, btrahan Reviewed By: s CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1588
This commit is contained in:
parent
18ba5fa0ad
commit
47631530a5
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* Copyright 2011 Facebook, Inc.
|
||||
* Copyright 2012 Facebook, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -23,6 +23,10 @@ class PhabricatorMetaMTASendGridReceiveController
|
|||
return false;
|
||||
}
|
||||
|
||||
public function shouldRequireAdmin() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public function processRequest() {
|
||||
|
||||
// No CSRF for SendGrid.
|
||||
|
|
Loading…
Reference in a new issue