diff --git a/openlp/plugins/bibles/endpoint.py b/openlp/plugins/bibles/endpoint.py index 8d9c97228..08a945e7c 100644 --- a/openlp/plugins/bibles/endpoint.py +++ b/openlp/plugins/bibles/endpoint.py @@ -66,7 +66,7 @@ def bibles_service(request): @api_bibles_endpoint.route('bibles/search') -def bibles_search(request): +def bibles_search_api(request): """ Handles requests for searching the bibles plugin @@ -77,7 +77,7 @@ def bibles_search(request): @api_bibles_endpoint.route('bibles/live') @requires_auth -def bibles_live(request): +def bibles_live_api(request): """ Handles requests for making a song live @@ -88,7 +88,7 @@ def bibles_live(request): @api_bibles_endpoint.route('bibles/add') @requires_auth -def bibles_service(request): +def bibles_service_api(request): """ Handles requests for adding a song to the service diff --git a/openlp/plugins/custom/endpoint.py b/openlp/plugins/custom/endpoint.py index ef2b06be9..b067ec906 100644 --- a/openlp/plugins/custom/endpoint.py +++ b/openlp/plugins/custom/endpoint.py @@ -65,7 +65,7 @@ def custom_service(request): @api_custom_endpoint.route('custom/search') -def custom_search(request): +def custom_search_api(request): """ Handles requests for searching the custom plugin @@ -76,7 +76,7 @@ def custom_search(request): @api_custom_endpoint.route('custom/live') @requires_auth -def custom_live(request): +def custom_live_api(request): """ Handles requests for making a song live @@ -87,7 +87,7 @@ def custom_live(request): @api_custom_endpoint.route('custom/add') @requires_auth -def custom_service(request): +def custom_service_api(request): """ Handles requests for adding a song to the service diff --git a/openlp/plugins/images/endpoint.py b/openlp/plugins/images/endpoint.py index 860d2b209..ca82da00a 100644 --- a/openlp/plugins/images/endpoint.py +++ b/openlp/plugins/images/endpoint.py @@ -79,7 +79,7 @@ def images_service(request): @api_images_endpoint.route('images/search') -def images_search(request): +def images_search_api(request): """ Handles requests for searching the images plugin @@ -90,7 +90,7 @@ def images_search(request): @api_images_endpoint.route('images/live') @requires_auth -def images_live(request): +def images_live_api(request): """ Handles requests for making a song live @@ -101,7 +101,7 @@ def images_live(request): @api_images_endpoint.route('images/add') @requires_auth -def images_service(request): +def images_service_api(request): """ Handles requests for adding a song to the service diff --git a/openlp/plugins/media/endpoint.py b/openlp/plugins/media/endpoint.py index 32e86590a..014c3c790 100644 --- a/openlp/plugins/media/endpoint.py +++ b/openlp/plugins/media/endpoint.py @@ -66,7 +66,7 @@ def media_service(request): @api_media_endpoint.route('media/search') -def media_search(request): +def media_search_api(request): """ Handles requests for searching the media plugin @@ -77,7 +77,7 @@ def media_search(request): @api_media_endpoint.route('media/live') @requires_auth -def media_live(request): +def media_live_api(request): """ Handles requests for making a song live @@ -88,7 +88,7 @@ def media_live(request): @api_media_endpoint.route('media/add') @requires_auth -def media_service(request): +def media_service_api(request): """ Handles requests for adding a song to the service diff --git a/openlp/plugins/presentations/endpoint.py b/openlp/plugins/presentations/endpoint.py index cd206468a..ce622083c 100644 --- a/openlp/plugins/presentations/endpoint.py +++ b/openlp/plugins/presentations/endpoint.py @@ -80,7 +80,7 @@ def presentations_service(request): @api_presentations_endpoint.route('presentations/search') -def presentations_search(request): +def presentations_search_api(request): """ Handles requests for searching the presentations plugin @@ -91,7 +91,7 @@ def presentations_search(request): @api_presentations_endpoint.route('presentations/live') @requires_auth -def presentations_live(request): +def presentations_live_api(request): """ Handles requests for making a song live @@ -102,7 +102,7 @@ def presentations_live(request): @api_presentations_endpoint.route('presentations/add') @requires_auth -def presentations_service(request): +def presentations_service_api(request): """ Handles requests for adding a song to the service diff --git a/openlp/plugins/songs/endpoint.py b/openlp/plugins/songs/endpoint.py index bfab68697..8711fcccd 100644 --- a/openlp/plugins/songs/endpoint.py +++ b/openlp/plugins/songs/endpoint.py @@ -66,7 +66,7 @@ def songs_service(request): @api_songs_endpoint.route('songs/search') -def songs_search(request): +def songs_search_api(request): """ Handles requests for searching the songs plugin @@ -77,7 +77,7 @@ def songs_search(request): @api_songs_endpoint.route('songs/live') @requires_auth -def songs_live(request): +def songs_live_api(request): """ Handles requests for making a song live @@ -88,7 +88,7 @@ def songs_live(request): @api_songs_endpoint.route('songs/add') @requires_auth -def songs_service(request): +def songs_service_api(request): """ Handles requests for adding a song to the service