Skip to content

Commit c98b19b

Browse files
authored
Rename AAD to Microsoft Entra ID (#2838)
1 parent 5472ceb commit c98b19b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/components/users/signin-social/react/SignInSocialViewModel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class SignInSocialViewModel extends React.Component<ComponentProps, Compo
3333
return
3434
<placeholder-content>
3535
<div className="not-configured">This widget will display a sign-up form when you configure <a
36-
href="https://aka.ms/apim-how-to-aad" target="_blank">Azure Active Directory</a> or <a
36+
href="https://aka.ms/apim-how-to-aad" target="_blank">Microsoft Entra ID</a> or <a
3737
href="https://aka.ms/apim-how-to-aadb2c" target="_blank">Azure Active Directory B2C</a> integration in your API
3838
Management service. This message appears only in the portal's administrative mode and the widget will be rendered as
3939
an empty space in the published portal, so you don't need to remove it.

src/components/users/signin-social/signinSocialHandlers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class SigninSocialHandlers implements IWidgetHandler<SigninSocialModel> {
2020
requires: ["html"],
2121
createModel: async () => {
2222
const model = new SigninSocialModel();
23-
model.aadLabel = "Azure Active Directory";
23+
model.aadLabel = "Microsoft Entra ID";
2424
model.aadB2CLabel = "Azure Active Directory B2C";
2525
return model;
2626
}
@@ -61,7 +61,7 @@ export class SigninSocialHandlers implements IWidgetHandler<SigninSocialModel> {
6161

6262
public async getWidgetModel(): Promise<SigninSocialModel> {
6363
const model = new SigninSocialModel();
64-
model.aadLabel = "Azure Active Directory";
64+
model.aadLabel = "Microsoft Entra ID";
6565
model.aadB2CLabel = "Azure Active Directory B2C";
6666
return model;
6767
}

src/components/users/signin-social/signinSocialModelBinder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class SigninSocialModelBinder implements IModelBinder<SigninSocialModel>
2020

2121
model.security = contract.security ?? { roles: [defaultRole] };
2222
model.styles = contract.styles || { appearance: "components/button/default" };
23-
model.aadLabel = contract.aadLabel || "Azure Active Directory";
23+
model.aadLabel = contract.aadLabel || "Microsoft Entra ID";
2424
model.aadB2CLabel = contract.aadB2CLabel || "Azure Active Directory B2C";
2525
model.aadReplyUrl = contract.aadReplyUrl;
2626
model.aadB2CReplyUrl = contract.aadB2CReplyUrl;

src/components/users/signup-social/react/SignUpSocialViewModel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class SignUpSocialViewModel extends React.Component<any, any> {
2020
if (this.state.mode !== "publishing") {
2121
return <placeholder-content>
2222
<div className="not-configured">This widget will display a sign-up form when you configure <a
23-
href="https://aka.ms/apim-how-to-aad" target="_blank">Azure Active Directory</a> or <a
23+
href="https://aka.ms/apim-how-to-aad" target="_blank">Microsoft Entra ID</a> or <a
2424
href="https://aka.ms/apim-how-to-aadb2c" target="_blank">Azure Active Directory B2C</a> integration in your API
2525
Management service. This message appears only in the portal's administrative mode and the widget will be rendered as
2626
an empty space in the published portal, so you don't need to remove it.

templates/default.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

templates/fui/default.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)