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
2 changes: 1 addition & 1 deletion apps/docs/src/pages/en/schools/sso.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To use this feature on [courseLit.app](https://courselit.app), you need to be on

The following is a description of the fields under this panel:

- **SAML ACS URL**: This is the URL that your IdP will send the SAML response to. This is usually `https://<school>.courselit.app/api/auth/sso/saml2/sp/acs/sso`
- **SAML ACS URL**: This is the URL that your IdP will send the SAML response to. This is usually `https://<school>.courselit.app/api/auth/sso/saml2/callback/sso`
- **Audience URI (SP Entity ID)**: This is the URL that your IdP will use to validate the SAML response. This is usually `https://<school>.courselit.app/api/auth/sso/saml2/sp/metadata?providerId=sso`

5. After configuring the IdP provider, obtain the required settings from it and populate the values in the `IDP Configuration` panel.
Expand Down
4 changes: 2 additions & 2 deletions apps/web/components/admin/settings/sso.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,14 +378,14 @@ export default function SSOProvider({ address }: NewSSOProviderProps) {
<Input
type="text"
disabled={true}
value={`${address.backend}/api/auth/sso/saml2/sp/acs/sso`}
value={`${address.backend}/api/auth/sso/saml2/callback/sso`}
/>
<Button
variant="outline"
size="icon"
onClick={() =>
copyToClipboard(
`${address.backend}/api/auth/sso/saml2/sp/acs/sso`,
`${address.backend}/api/auth/sso/saml2/callback/sso`,
)
}
>
Expand Down