You can retrieve a list of the presentations that the current Mobile Locker user has access to:

// The ML Library mobilelocker.getPresentations() .then(presentations => { // do something with them }) // Using axios axios.get('mobilelocker/api/presentations') .then(presentations => { // do something with them })

The JSON response is an array of presentation objects.

The Kazaamax Starter presentation demonstrates this functionality:

738