I think this was asked before… Can I define author...
# sst
a
I think this was asked before… Can I define authorizer for my API with
defaultAuthorizer
for all the functions and then skip ONE single function to not use it? Maybe adding this on my single function…..?
Copy code
authorizationType: ApiAuthorizationType.NONE,
f
Yup, that works.
a
Thanks!