Added option to proxy notifications to another server

This commit is contained in:
2023-03-23 13:16:44 -03:00
parent 4178d55145
commit ab978aa3f2
5 changed files with 223 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Helpers;
use Illuminate\Support\Facades\Facade;
class ProxyHelperFacade extends Facade {
protected static function getFacadeAccessor(){
return "ProxyHelper";
}
}