mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
63 lines
1.3 KiB
Markdown
63 lines
1.3 KiB
Markdown
---
|
|
description: This recipes explains how to enable new users to self-register their own account in Directus.
|
|
image:
|
|
tags: []
|
|
skill_level:
|
|
directus_version: 9.18.1
|
|
author_override:
|
|
author: Eron Powell
|
|
---
|
|
|
|
# Configure User Registration
|
|
|
|
> {{ $frontmatter.description }}
|
|
|
|
:::tip Author: {{$frontmatter.author}}
|
|
|
|
<!-- **Skill Level:** {{$frontmatter.skill_level}}\ -->
|
|
|
|
**Directus Version:** {{$frontmatter.directus_version}}
|
|
|
|
<!-- **Tags:** {{$frontmatter.tags.join(", ")}} -->
|
|
|
|
:::
|
|
|
|
## Explanation
|
|
|
|
<!--
|
|
See the VitePress docs to learn about its markdown options:
|
|
https://vitepress.vuejs.org/guide/markdown
|
|
-->
|
|
|
|
## The Recipe
|
|
|
|
:::tip Requirements
|
|
|
|
:::
|
|
|
|
<video autoplay playsinline muted loop controls>
|
|
<source src="" type="video/mp4" />
|
|
</video>
|
|
|
|
<!--
|
|
VIDEO IS OPTIONAL: delete if not needed
|
|
-->
|
|
|
|
### Public Permissions
|
|
|
|
- Public
|
|
- Gets create permissions for users collection
|
|
- Custom Access Permissions: Public must create users with username, password, etc...
|
|
|
|
Here, you may need to add some details about the expected result before moving on to Part 2 (if you have a part 2).
|
|
|
|
### New User Permissions
|
|
|
|
- New User
|
|
- users: custom update permissions on $CURRENT_USER so user can change name and password.
|
|
- Set permissions for other collections
|
|
- show one collection, using custom access permissions
|
|
- Repeat as desired
|
|
|
|
## Final Tips
|