-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a1c599
commit 11a4b9a
Showing
11 changed files
with
338 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
156 changes: 92 additions & 64 deletions
156
features/admin.connections.v1/components/create/custom-authentication-create-wizard.tsx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 0 additions & 42 deletions
42
modules/i18n/src/models/namespaces/custom-auth-connection-ns.ts
This file was deleted.
Oops, something went wrong.
130 changes: 130 additions & 0 deletions
130
modules/i18n/src/models/namespaces/custom-authentication-ns.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
/** | ||
* Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
export interface customAuthenticationNS { | ||
fields: { | ||
createWizard: { | ||
authenticationTypeStep: { | ||
label: string; | ||
externalAuthenticationCard: { | ||
header: string; | ||
mainDescription: string; | ||
examples: string; | ||
}; | ||
internalUserAuthenticationCard: { | ||
header: string; | ||
mainDescription: string; | ||
examples: string; | ||
}; | ||
title: string; | ||
twoFactorAuthenticationCard: { | ||
header: string; | ||
mainDescription: string; | ||
examples: string; | ||
} | ||
}; | ||
generalSettingsStep: { | ||
title: string; | ||
identifier: { | ||
label: string; | ||
hint: string; | ||
placeholder: string; | ||
validations: { | ||
empty: string | ||
invalid: string | ||
}; | ||
}; | ||
displayName: { | ||
label: string; | ||
placeholder: string; | ||
hint: string; | ||
validations: { | ||
empty: string | ||
invalid: string | ||
}; | ||
}; | ||
}; | ||
configurationsStep: { | ||
title: string; | ||
endpoint: { | ||
label: string; | ||
placeholder: string; | ||
hint: string; | ||
validations: { | ||
empty: string; | ||
invalid: string; | ||
general: string; | ||
}; | ||
}; | ||
authenticationTypeDropdown: { | ||
label: string; | ||
placeholder: string; | ||
hint: string; | ||
authProperties: { | ||
username: { | ||
label: string; | ||
placeholder: string; | ||
validations: { | ||
required: string; | ||
}; | ||
}; | ||
password: { | ||
label: string; | ||
placeholder: string; | ||
validations: { | ||
required: string; | ||
}; | ||
}; | ||
accessToken: { | ||
label: string; | ||
placeholder: string; | ||
validations: { | ||
required: string; | ||
}; | ||
}; | ||
header: { | ||
label: string; | ||
placeholder: string; | ||
validations: { | ||
required: string; | ||
invalid: string; | ||
}; | ||
}; | ||
value: { | ||
label: string; | ||
placeholder: string; | ||
validations: { | ||
required: string; | ||
}; | ||
} | ||
}; | ||
validations: { | ||
required: string; | ||
}; | ||
} | ||
} | ||
helpPanel: { | ||
hint: { | ||
header: string; | ||
description: string; | ||
warning: string; | ||
} | ||
} | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters