Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,20 @@ <h3>{{ provider_name }} Authentication</h3>
{% if pending_links_count %}
<legend>Unlinked Members</legend>

{% if require_link %}
<p>
There are currently {{ pending_links_count }} member(s) who have
not yet linked their account with {{ provider_name }}. Until this
is done they will be unable to access the organization.

</p>
{% else %}
<p>
There are currently {{ pending_links_count }} member(s) who have
not yet linked their account with {{ provider_name }}. They can
still access the organization using their email and password, but
will not be able to log in via {{ provider_name }} until linked.
</p>
{% endif %}

<p>
<button class="btn btn-primary" name="op" value="reinvite">Send Reminders</button>
Expand Down
1 change: 1 addition & 0 deletions src/sentry/web/frontend/organization_auth_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ def handle_existing_provider(
),
"auth_provider": auth_provider,
"provider_name": provider.name,
"require_link": not auth_provider.flags.allow_unlinked,
"scim_token_display": scim_token_display,
"scim_url": get_scim_url(auth_provider, organization),
"content": response,
Expand Down
Loading