luanfonceca/speakerfight

Add Sentry User Feedback

Open

#282 ouverte le 3 oct. 2017

Voir sur GitHub
 (1 commentaire) (2 réactions) (0 assignés)Python (135 forks)github user discovery
easyenhancementhacktoberfest

Métriques du dépôt

Stars
 (342 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

Enabling User Feedback allows you to interact with your users on an unprecedented level. Collect additional details about issues affecting them, and more importantly reach out to them with resolutions.

When configured, your users will be presented with a dialog prompting them for additional information. That information will get attached to the issue in Sentry

And add this snippet:

<!-- Sentry JS SDK 2.1.+ required -->
<script src="https://cdn.ravenjs.com/2.1.0/raven.min.js"></script>

{% if request.sentry.id %}
  <script>
  Raven.showReportDialog({
    // grab the eventId generated by the Sentry SDK
    eventId: '{{ request.sentry.id }}',

    // use the public DSN (dont include your secret!)
    dsn: 'https://255eac1a3c61488daf6fb757f8565da5@sentry.io/27561'
  });
  </script>
{% endif %}

Guide contributeur