I added a new endpoint (Wasp action). Inside my operation, I want to access a raw request and check the request header value. I couldn't find a way to do this. I tried to access the request from the Wasp context, but it is not there.
This is how I define wasp action:
action incrementStats {
fn: import { incrementStats } from "@src/ai-forms/operations",
entities: [User]
}
Could someone please help me with this?