UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

7 lines (5 loc) 287 B
import apiErrorHandler from './apiErrorHandler.js'; export default function loadSubscriptions(uuid, widgetId, apiPath){ const subscribedUsers = fetch(`${apiPath}/endUserNotifications/widgets/${widgetId}/subscribedUsers/${uuid}`).then(apiErrorHandler); return subscribedUsers; }