diff --git a/aleksis/core/util/core_helpers.py b/aleksis/core/util/core_helpers.py
index 5669323611a2a09a6b82a9d0a8523336381bfa7e..ec114c5c07ba8fdc7e05ac85faed200d19b506bd 100644
--- a/aleksis/core/util/core_helpers.py
+++ b/aleksis/core/util/core_helpers.py
@@ -1,6 +1,8 @@
+import os
 import pkgutil
 from importlib import import_module
 from typing import Any, Callable, Sequence, Union
+from uuid import uuid4
 
 from django.conf import settings
 from django.db.models import Model
@@ -106,7 +108,7 @@ def has_person(obj: Union[HttpRequest, Model]) -> bool:
 
 def celery_optional(orig: Callable) -> Callable:
     """ Decorator that makes Celery optional for a function.
-    
+
     If Celery is configured and available, it wraps the function in a Task
     and calls its delay method when invoked; if not, it leaves it untouched
     and it is executed synchronously.
@@ -121,3 +123,16 @@ def celery_optional(orig: Callable) -> Callable:
         return wrapped
     else:
         return orig
+
+
+def path_and_rename(instance, filename):
+    upload_to = 'files'
+    ext = filename.split('.')[-1].lower()
+    # get filename
+    if instance.pk:
+        filename = '{}.{}'.format(instance.pk, ext)
+    else:
+        # set filename as random string
+        filename = '{}.{}'.format(uuid4().hex, ext)
+    # return the whole path to the file
+    return os.path.join(upload_to, filename)
diff --git a/aleksis/core/util/helper.py b/aleksis/core/util/helper.py
deleted file mode 100644
index 04b910255cffad5db90f9c4077b9016a21ae5b82..0000000000000000000000000000000000000000
--- a/aleksis/core/util/helper.py
+++ /dev/null
@@ -1,22 +0,0 @@
-import os
-from uuid import uuid4
-
-from django.template.loader_tags import register
-
-
-def path_and_rename(instance, filename):
-    upload_to = 'menus'
-    ext = filename.split('.')[-1].lower()
-    # get filename
-    if instance.pk:
-        filename = '{}.{}'.format(instance.pk, ext)
-    else:
-        # set filename as random string
-        filename = '{}.{}'.format(uuid4().hex, ext)
-    # return the whole path to the file
-    return os.path.join(upload_to, filename)
-
-
-@register.inclusion_tag("components/msgbox.html")
-def msg_box(msg, status="success", icon="info"):
-    return {"msg": msg, "status": status, "icon": icon}