feat(auth): add user and role management

This commit is contained in:
Ali BARIN
2023-07-18 21:00:10 +00:00
parent a7104c41a2
commit 0deaa03218
108 changed files with 2909 additions and 388 deletions

View File

@@ -2,6 +2,7 @@
"brandText": "Automatisch",
"searchPlaceholder": "Search",
"accountDropdownMenu.settings": "Settings",
"accountDropdownMenu.adminSettings": "Admin",
"accountDropdownMenu.logout": "Logout",
"drawer.dashboard": "Dashboard",
"drawer.flows": "Flows",
@@ -12,6 +13,9 @@
"settingsDrawer.goBack": "Go to the dashboard",
"settingsDrawer.notifications": "Notifications",
"settingsDrawer.billingAndUsage": "Billing and usage",
"adminSettingsDrawer.users": "Users",
"adminSettingsDrawer.roles": "Roles",
"adminSettingsDrawer.goBack": "Go to the dashboard",
"app.connectionCount": "{count} connections",
"app.flowCount": "{count} flows",
"app.addConnection": "Add connection",
@@ -130,6 +134,7 @@
"loginForm.noAccount": "Don't have an Automatisch account yet?",
"loginForm.signUp": "Sign up",
"loginPage.divider": "OR",
"ssoProviders.loginWithProvider": "Login with {providerName}",
"forgotPasswordForm.title": "Forgot password",
"forgotPasswordForm.submit": "Send reset instructions",
"forgotPasswordForm.instructionsSent": "The instructions have been sent!",
@@ -165,5 +170,38 @@
"checkoutCompletedAlert.text": "Thank you for upgrading your subscription and supporting our self-funded business!",
"subscriptionCancelledAlert.text": "Your subscription is cancelled, but you can continue using Automatisch until {date}.",
"customAutocomplete.noOptions": "No options available.",
"powerInputSuggestions.noOptions": "No options available."
"powerInputSuggestions.noOptions": "No options available.",
"usersPage.title": "User management",
"usersPage.createUser": "Create user",
"deleteUserButton.title": "Delete user",
"deleteUserButton.description": "This will permanently delete the user and all the associated data with it.",
"deleteUserButton.cancel": "Cancel",
"deleteUserButton.confirm": "Delete",
"editUserPage.title": "Edit user",
"createUserPage.title": "Create user",
"userForm.fullName": "Full name",
"userForm.email": "Email",
"userForm.role": "Role",
"userForm.password": "Password",
"createUser.submit": "Create",
"editUser.submit": "Update",
"userList.fullName": "Full name",
"userList.email": "Email",
"rolesPage.title": "Role management",
"rolesPage.createRole": "Create role",
"deleteRoleButton.title": "Delete role",
"deleteRoleButton.description": "This will permanently delete the role.",
"deleteRoleButton.cancel": "Cancel",
"deleteRoleButton.confirm": "Delete",
"editRolePage.title": "Edit role",
"createRolePage.title": "Create role",
"roleForm.name": "Name",
"roleForm.description": "Description",
"createRole.submit": "Create",
"editRole.submit": "Update",
"roleList.name": "Name",
"roleList.description": "Description",
"permissionSettings.cancel": "Cancel",
"permissionSettings.apply": "Apply",
"permissionSettings.title": "Conditions"
}