Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] [feat] Introduce new remote user store implementation #7099

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
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
3 changes: 2 additions & 1 deletion features/admin.core.v1/configs/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ export class Config {
I18nConstants.TEMPLATE_CORE_NAMESPACE,
I18nConstants.APPLICATION_TEMPLATES_NAMESPACE,
I18nConstants.ACTIONS_NAMESPACE,
I18nConstants.TENANTS_NAMESPACE
I18nConstants.TENANTS_NAMESPACE,
I18nConstants.REMOTE_USER_STORES_NAMESPACE
],
preload: []
};
Expand Down
8 changes: 7 additions & 1 deletion features/admin.core.v1/constants/i18n-constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,11 @@ export class I18nConstants {
*/
public static readonly TENANTS_NAMESPACE: string = I18nModuleConstants.TENANTS_NAMESPACE;

/**
* Remote User Stores namespace.
*/
public static readonly REMOTE_USER_STORES_NAMESPACE: string = I18nModuleConstants.REMOTE_USER_STORES_NAMESPACE;

/**
* Locations of the I18n namespaces.
*/
Expand Down Expand Up @@ -321,7 +326,8 @@ export class I18nConstants {
[ I18nConstants.TEMPLATE_CORE_NAMESPACE, "portals" ],
[ I18nConstants.IMPERSONATION_CONFIGURATION_NAMESPACE, "portals" ],
[ I18nConstants.ACTIONS_NAMESPACE, "portals" ],
[ I18nConstants.TENANTS_NAMESPACE, "portals" ]
[ I18nConstants.TENANTS_NAMESPACE, "portals" ],
[ I18nConstants.REMOTE_USER_STORES_NAMESPACE, "portals" ]
]);

/**
Expand Down
2 changes: 1 addition & 1 deletion features/admin.extensions.v1/configs/common.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const commonConfig: CommonConfig = {
},
{
component: lazy(() =>
import("@wso2is/admin.remote-userstores.v1/pages/remote-customer-user-store-create-page")
import("@wso2is/admin.remote-userstores.v1/pages/remote-user-store-create-page")
),
icon: {
icon: getSidePanelIcons().childIcon
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.configurations-form {
padding-top: 16px;

.form-grid-container {
margin-top: 8px;
margin-bottom: 16px;
}
}
Loading
Loading