From 36c4a16fb5d5dd8cb4bae4a56cb4a218623496c6 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 27 Feb 2021 01:16:03 +0100 Subject: [PATCH] move to settings module --- owrx/controllers/{ => settings}/bookmarks.py | 0 owrx/http.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename owrx/controllers/{ => settings}/bookmarks.py (100%) diff --git a/owrx/controllers/bookmarks.py b/owrx/controllers/settings/bookmarks.py similarity index 100% rename from owrx/controllers/bookmarks.py rename to owrx/controllers/settings/bookmarks.py diff --git a/owrx/http.py b/owrx/http.py index 588e251..381e070 100644 --- a/owrx/http.py +++ b/owrx/http.py @@ -10,7 +10,7 @@ from owrx.controllers.settings.sdr import SdrDeviceListController, SdrDeviceCont from owrx.controllers.settings.reporting import ReportingController from owrx.controllers.settings.backgrounddecoding import BackgroundDecodingController from owrx.controllers.settings.decoding import DecodingSettingsController -from owrx.controllers.bookmarks import BookmarksController +from owrx.controllers.settings.bookmarks import BookmarksController from owrx.controllers.session import SessionController from owrx.controllers.profile import ProfileController from owrx.controllers.imageupload import ImageUploadController