mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Merge branch 'feat-mailgun-provider' of https://github.com/appwrite/appwrite into feat-topics-controller
This commit is contained in:
commit
b019273166
2 changed files with 3 additions and 3 deletions
|
|
@ -748,7 +748,7 @@ class AccountCustomClientTest extends Scope
|
|||
$authKey = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MSG91_AUTH_KEY');
|
||||
$senderId = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MSG91_SENDER_ID');
|
||||
|
||||
if($to === '' || $from === '' || $authKey === '' || $senderId === '') {
|
||||
if ($to === '' || $from === '' || $authKey === '' || $senderId === '') {
|
||||
$this->markTestSkipped('SMS provider not configured');
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -128,10 +128,10 @@ class AccountTest extends Scope
|
|||
$authKey = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MSG91_AUTH_KEY');
|
||||
$senderId = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MSG91_SENDER_ID');
|
||||
|
||||
if($to === '' || $from === '' || $authKey === '' || $senderId === '') {
|
||||
if ($to === '' || $from === '' || $authKey === '' || $senderId === '') {
|
||||
$this->markTestSkipped('SMS provider not configured');
|
||||
}
|
||||
|
||||
|
||||
$projectId = $this->getProject()['$id'];
|
||||
$query = $this->getQuery(self::$CREATE_PROVIDER);
|
||||
$graphQLPayload = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue