{% extends "sentry/emails/base.html" %} {% load i18n %} {% load sentry_avatars %} {% load sentry_helpers %} {% block main %}

You're All Upgraded

Well, you're looking fresh. Your organization {{organization.name}}'s Sentry-Slack Integration for your workspace {{integration.name}} is all up to date and ready to report errors. If you're confused, curious, or just looking for some light reading, see our docs.

{% if good_channels or failing_channels %} Private Channels

Before you pack up and go home, take a look at the following private channel(s). We sent you a message with instructions to add Sentry to the channel(s).

{% for channel in good_channels %}
  • {{channel.name}}
  • {% endfor %} {% if failing_channels %}

    For some reason, we couldn't send a message to private channel(s) below:

    {% for channel in failing_channels %}
  • {{channel.name}}
  • {% endfor %} {% endif %}
    {% endif %} {% if missing_channels %}
    Missing or Unauthorized Channels

    {% trans "These channels were found to be missing or unauthorized in your legacy Slack integration. If they were private channels, you'll have make sure to add the Sentry bot to these channels. Otherwise you may want update your alert rules accordingly." %}

    {% for channel in missing_channels %}
  • {{channel.name}}
  • {% endfor %}
    {% endif %} {% endblock %}