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

@ -10,10 +10,10 @@ makeRequest = (opts, callback)->
else
request(opts, callback)
module.exports =
module.exports =
getUserNotifications: (user_id, callback)->
opts =
opts =
uri: "#{settings.apis.notifications?.url}/user/#{user_id}"
json: true
timeout: oneSecond
@ -30,7 +30,7 @@ module.exports =
callback(null, unreadNotifications)
createNotification: (user_id, key, templateKey, messageOpts, callback)->
opts =
opts =
uri: "#{settings.apis.notifications?.url}/user/#{user_id}"
timeout: oneSecond
method:"POST"
@ -43,7 +43,7 @@ module.exports =
makeRequest opts, callback
markAsReadWithKey: (user_id, key, callback)->
opts =
opts =
uri: "#{settings.apis.notifications?.url}/user/#{user_id}"
method: "DELETE"
timeout: oneSecond
@ -52,7 +52,7 @@ module.exports =
}
logger.log user_id:user_id, key:key, "sending mark notification as read with key to notifications api"
makeRequest opts, callback
markAsRead: (user_id, notification_id, callback)->
opts =
@ -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