Skip to content
Merged
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 docs/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,8 @@ Example:
status={
"previous_status": true,
"updated_status": false,
"updated_by": "user/test"
"updated_by": "user/test",
"timestamp": "2023-03-15 12:34:56"
},
)
```
Expand Down
3 changes: 2 additions & 1 deletion docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,8 @@ Example:
status={
"previous_status": true,
"updated_status": false,
"updated_by": "user/test"
"updated_by": "user/test",
"timestamp": "2023-03-15 12:34:56"
},
)
```
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Main classes for the Lightspeed Core Stack REST API service.

## [client.py](client.py)
LLama Stack client retrieval class.
Llama Stack client retrieval class.

## [configuration.py](configuration.py)
Configuration loader.
Expand Down
11 changes: 11 additions & 0 deletions src/authorization/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# List of source files stored in `src/authorization` directory

## [__init__.py](__init__.py)
Authorization module for role-based access control.

## [middleware.py](middleware.py)
Authorization middleware and decorators.

## [resolvers.py](resolvers.py)
Authorization resolvers for role evaluation and access control.