I'm trying to seed my DB with sample users and organizations; however, creation of these require me to pass a header object which doesn't make sense in my situation since this is a fully server-side event with no user context. How can I achieve that?
I hit the same problem in other cases too, where I want to call a better auth endpoint from the server-side, but it requires user context (header). People have commented it's not secure, but it is! It's a server process where I have full control and know for sure the action is safe. I ended up bypassing better-auth and interacting directly with the DB via Drizzle ORM, but that's a bit ugly. Would've been great if there were a way to achieve this.