diff --git a/PyRIGS/decorators.py b/PyRIGS/decorators.py index 065ce853..42df533c 100644 --- a/PyRIGS/decorators.py +++ b/PyRIGS/decorators.py @@ -10,7 +10,7 @@ def allow_embed(): def headers_wrapper(fun): def wrapped_function(*args, **kwargs): response = fun(*args, **kwargs) - response['X-Frame-Options'] = "ALLOW" + response['X-Frame-Options'] = "ALLOW-FROM https://forum.nottinghamtec.co.uk/" return response return wrapped_function return headers_wrapper