diff --git a/plugins/tps/birzha/routes.php b/plugins/tps/birzha/routes.php index 4dc0d2974..52e6cd9a3 100644 --- a/plugins/tps/birzha/routes.php +++ b/plugins/tps/birzha/routes.php @@ -74,3 +74,7 @@ Route::get('/mail', function () { return MailManager::instance()->renderTemplate($template, $data); }); +Route::get('set-ck', function() { + setcookie('some_id', "7777"); + return 'ok'; +});