-
Hello @amh4r and others, I need your help with one thing. Since Root function: [ENCRYPTED only
Inngest SDK version: 0.4.17 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
That currently isn't possible with In the meantime, you could copy Here's where it encrypts invoke data: You could maybe add a new |
Beta Was this translation helpful? Give feedback.
That currently isn't possible with
inngest.experimental.encryption_middleware
, but we'll likely add it in the future! We're still gathering more use cases before making big changes.In the meantime, you could copy
inngest.experimental.encryption_middleware
into your codebase and modify it to suit your needs.Here's where it encrypts invoke data:
https://github.com/inngest/inngest-py/blob/main/inngest/experimental/encryption_middleware.py#L282
You could maybe add a new
invoke_encryption_field
constructor arg and do something similar to this:https://github.com/inngest/inngest-py/blob/main/inngest/experimental/encryption_middleware.py#L235-L240