How to add recaptcha support
Hello! I am looking to add ReCaptcha v3 support to a few of my trpc endpoints. I am not able to find any reference to how I can do this.
I am using create-t3-app
Solution:Jump to solution
The same way you’d with any api right? You could make use of a “reusable base procedure”.
https://trpc.io/docs/server/procedures#reusable-base-procedures...
Define Procedures | tRPC
A procedure is a function which is exposed to the client, it can be one of:
2 Replies
Solution
The same way you’d with any api right? You could make use of a “reusable base procedure”.
https://trpc.io/docs/server/procedures#reusable-base-procedures
Define Procedures | tRPC
A procedure is a function which is exposed to the client, it can be one of:
Thank you! I didnt know we could chain procedures. My fault for not RFTM.