Files
medusa-store/docs/content/modules/users/overview.mdx
2023-05-03 16:41:45 +03:00

121 lines
2.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
description: "Users are admins that can manage the ecommerce stores data and operations. Learn about the available features and guides."
---
import DocCardList from '@theme/DocCardList';
import DocCard from '@theme/DocCard';
import Icons from '@theme/Icon';
# Users
Users are admins that can manage the ecommerce stores data and operations. This overview introduces the available features related to users.
:::note
Not a developer? Check out the [Users user guide](../../user-guide/users/index.md).
:::
## Features
### Team Management
There can be more than one admin in the team managing the ecommerce store. Admins can manage other users in that team.
Admins can also manage their profile details.
<DocCardList colSize={6} items={[
{
type: 'link',
href: '#',
label: 'Admin: Manage Users',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn how to manage users using Admin APIs.',
isSoon: true
}
},
{
type: 'link',
href: '/user-guide/users/team',
label: 'User Guide: Manage Team',
customProps: {
icon: Icons['users-solid'],
description: 'Learn how to manage the team in Medusa Admin.'
}
},
{
type: 'link',
href: '/modules/users/admin/manage-profile',
label: 'Admin: Manage Profile',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn how to manage a user profile using Admin APIs.',
}
},
{
type: 'link',
href: '/user-guide/users/profile',
label: 'User Guide: Manage Profile',
customProps: {
icon: Icons['users-solid'],
description: 'Learn how to manage the user\'s profile in Medusa Admin.'
}
},
]} />
### User Invites
Admins can invite users to join their team. Invites can be resent, accepted, or removed.
- Admin: Manage Invites
- User Guide: Manage Invites
- Backend: Send Invite
<DocCardList colSize={4} items={[
{
type: 'link',
href: '#',
label: 'Admin: Manage Invites',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn how to manage invites using Admin APIs.',
isSoon: true
}
},
{
type: 'link',
href: '/user-guide/users/team#manage-invites',
label: 'User Guide: Manage Invites',
customProps: {
icon: Icons['users-solid'],
description: 'Learn how to manage invites using Medusa Admin.',
}
},
{
type: 'link',
href: '/modules/users/backend/send-invite',
label: 'Backend: Send Invite',
customProps: {
icon: Icons['users-solid'],
description: 'Learn how to send invites in the backend.',
}
},
]} />
---
## Understand the Architecture
Learn how user-related entities and concepts are built, their relation to other modules, and more.
<DocCard item={{
type: 'link',
href: '/modules/users',
label: 'Architecture: User',
customProps: {
icon: Icons['circle-stack-solid'],
description: 'Learn about the User Architecture.',
}
}} />