Skip to content
Snippets Groups Projects
Commit 0101688d authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixed env values for civicrm api

parent 0000cd29
No related branches found
No related tags found
3 merge requests!1895Development,!1841Development,!1819Resolve "Keys for donors"
...@@ -226,8 +226,8 @@ class MailController extends Controller ...@@ -226,8 +226,8 @@ class MailController extends Controller
$postdata = [ $postdata = [
"entity" => "Contribution", "entity" => "Contribution",
"action" => "mgcreate", "action" => "mgcreate",
"api_key" => env("TICKET_API_KEY", ''), "api_key" => env("CIVICRM_API_KEY", ''),
"key" => env("TICKET_SITE_KEY", ''), "key" => env("CIVICRM_SITE_KEY", ''),
"json" => 1, "json" => 1,
"iban" => $iban->MachineFormat(), "iban" => $iban->MachineFormat(),
"bic" => $bic, "bic" => $bic,
...@@ -251,7 +251,7 @@ class MailController extends Controller ...@@ -251,7 +251,7 @@ class MailController extends Controller
$mission = [ $mission = [
"resulthash" => $resulthash, "resulthash" => $resulthash,
"url" => env("TICKET_URL", "https://metager.de"), "url" => env("CIVICRM_URL", "https://metager.de"),
"useragent" => "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0", "useragent" => "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0",
"username" => null, "username" => null,
"password" => null, "password" => null,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment