-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
blockchain_integration/pi_network/pi_network_university/docs/user-management.md
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,27 @@ | ||
# User Management | ||
================ | ||
|
||
The User Management system allows administrators to manage user accounts and profiles. | ||
|
||
## Features | ||
|
||
* User registration and login | ||
* User profile management | ||
* User role management | ||
* User authentication and authorization | ||
|
||
## API Endpoints | ||
-------------- | ||
|
||
### Users | ||
|
||
* **GET /users**: Retrieve a list of all users | ||
* **POST /users**: Create a new user | ||
* **GET /users/:id**: Retrieve a specific user by ID | ||
* **PUT /users/:id**: Update a specific user by ID | ||
* **DELETE /users/:id**: Delete a specific user by ID | ||
|
||
### User Roles | ||
|
||
* **GET /users/:id/roles**: Retrieve a list of all roles for a specific user | ||
* **POST /users/:id/roles |