Skip to content

Commit 5e509d6

Browse files
committed
CIAM logout needs authority to contain tenant path
1 parent b8df2fb commit 5e509d6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.env.sample

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ CLIENT_SECRET=<client secret>
1010
# "https://login.microsoftonline.com/TENANT_GUID"
1111
# or "https://login.microsoftonline.com/subdomain.onmicrosoft.com".
1212
#
13-
# Alternatively, use the ".../common" if you are building a multi-tenant AAD app
14-
# in world-wide cloud
15-
AUTHORITY=https://login.microsoftonline.com/common
13+
# Alternatively, use "https://login.microsoftonline.com/common" for multi-tenant app.
14+
AUTHORITY=<authority url>
1615
#
1716
#
1817
# 2. If you are using a Microsoft Entra External ID for customers (CIAM) tenant,
19-
# configure AUTHORITY as "https://subdomain.ciamlogin.com"
18+
# configure AUTHORITY as https://subdomain.ciamlogin.com/subdomain.onmicrosoft.com
2019
#AUTHORITY=<authority url>
2120

2221
# Your project's redirect URI. For example: http://localhost:5000/redirect

mysite/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77

88

9-
__version__ = "0.2.0"
9+
__version__ = "0.3.0"
1010

1111

1212
@settings.AUTH.login_required

0 commit comments

Comments
 (0)