speakerfight icon indicating copy to clipboard operation
speakerfight copied to clipboard

Add Sentry User Feedback

Open luanfonceca opened this issue 7 years ago • 1 comments

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

screen shot 2017-10-03 at 16 50 36

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://[email protected]/27561'
  });
  </script>
{% endif %}

luanfonceca avatar Oct 03 '17 19:10 luanfonceca

Hi @luanfonceca, I would like to work on this issue. Can I take it?

cacoze avatar Oct 11 '17 14:10 cacoze