Update markAsReadByKeyOnly url.

This commit is contained in:
Shane Kilkelly 2016-08-12 09:59:25 +01:00
parent a9042ff324
commit a7bc8bffe0
2 changed files with 7 additions and 7 deletions

View file

@ -66,7 +66,7 @@ module.exports =
# should not be exposed to user via ui/router
markAsReadByKeyOnly: (key, callback)->
opts =
uri: "#{settings.apis.notifications?.url}/notification/key/#{key}"
uri: "#{settings.apis.notifications?.url}/key/#{key}"
method: "DELETE"
timeout: oneSecond
logger.log {key:key}, "sending mark notification as read with key-only to notifications api"

View file

@ -77,7 +77,7 @@ describe 'NotificationsHandler', ->
it 'should send a delete request when a delete has been received to mark a notification', (done)->
@handler.markAsReadByKeyOnly @key, =>
opts =
uri: "#{notificationUrl}/notification/key/#{@key}"
uri: "#{notificationUrl}/key/#{@key}"
timeout:1000
method: "DELETE"
@request.calledWith(opts).should.equal true