exports.playlist = {
  hasAuthorization: function (req, res, next) {
    if (req.playlist.user.id != req.user.id) {
      return res.send(401, 'User is not authorized for this playlist!');
    }