Skip to content

Commit

Permalink
Link
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Dec 19, 2024
1 parent 62b3527 commit 9e767af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/docs/concepts/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The returned user information is available:

After authentication, LangGraph calls your [`@auth.on`](../cloud/reference/sdk/python_sdk_ref.md#langgraph_sdk.auth.Auth.on) handlers to control access to specific resources (e.g., threads, assistants, crons). These handlers can:

1. Add metadata to be saved during resource creation by mutating the `value["metadata"]` dictionary directly.
1. Add metadata to be saved during resource creation by mutating the `value["metadata"]` dictionary directly. See the [supported actions table](##supported-actions) for the list of types the value can take for each action.
2. Filter resources by metadata during search/list or read operations by returning a [filter dictionary](#filter-operations).
3. Raise an HTTP exception if access is denied.

Expand Down Expand Up @@ -393,6 +393,7 @@ If a more specific handler is registered, the more general handler will not be c
```
More specific handlers provide better type hints since they handle fewer action types.

#### Supported actions and types {#supported-actions}
Here are all the supported action handlers:

| Resource | Handler | Description | Value Type |
Expand Down

0 comments on commit 9e767af

Please sign in to comment.