Merge pull request #1030 from alphagov/remove-unused-get_all_notificaitons

Removed unused method
This commit is contained in:
Rebecca Law
2016-11-18 14:55:25 +00:00
committed by GitHub
2 changed files with 0 additions and 23 deletions

View File

@@ -10,15 +10,6 @@ class NotificationApiClient(BaseAPIClient):
self.service_id = app.config['ADMIN_CLIENT_USER_NAME']
self.api_key = app.config['ADMIN_CLIENT_SECRET']
def get_all_notifications(self, page=None):
params = {}
if page is not None:
params['page'] = page
return self.get(
url='/notifications',
params=params
)
def get_notifications_for_service(
self,
service_id,