if (userColumn === 'inAppNotification') {
      const { inAppNotification } = updatedUser[1][0].dataValues;
      if (inAppNotification === newNotificationStatus) {
        const message = inAppNotification === true ? 'You have successfully subscribed to in app notifications' : 'You will no longer receive in-app notifications from us';
        return res.status(200).json({ message, statusCode: 200 });