|
@@ -28,6 +28,9 @@ class EmailTestController extends Controller
|
|
|
|
|
|
public function previewEmail($email = null)
|
|
public function previewEmail($email = null)
|
|
{
|
|
{
|
|
|
|
+ if(!$this->user->is_super_admin){
|
|
|
|
+ abort(403);
|
|
|
|
+ }
|
|
$appInternalName = $this->appInternalName;
|
|
$appInternalName = $this->appInternalName;
|
|
$stringMappingConfig = $this->stringMappingConfig;
|
|
$stringMappingConfig = $this->stringMappingConfig;
|
|
if($email){
|
|
if($email){
|