J Levitt

Results 29 comments of J Levitt

I see that the resolveCuatomer() call is in a Lambda function in this project. Do the AWS access credentials have to be tied to a specific account in order to...

The next (obvious?) question is: It's very common to have development and production in separate AWS accounts. What's the best practice for testing Marketplace integration in that scenario? Can you...

I'll make you a deal. I'll PR some changes into the documentation if you successfully solve a JavaScript SDK v3 issue I have involving Marketplace API calls.

And here it is: https://github.com/aws-samples/aws-marketplace-serverless-saas-integration/issues/10

Very helpful folks! What if there are two (or more) dynamic params. What will the default search pattern be? e.g. ``` server.routes( [ { path: '/training/:id/:resp', methods: [ { type:...

Note. This pattern requires that you specify the file extension (if there is one). e.g. ``` file: (req) => `data/somenumbers-${req.params.id}.json` ```

In our version, we're not using email for signup. There's already an "admin" panel where an administrator can assign a password to a user. The admin gives the password to...

Are there any examples of "deadbolt overlays" in github or elsewhere?

If I could change this routine here: ``` if (payload == Case.LOGIN) { final L login = getLogin(context); final UL authUser = buildLoginAuthUser(login, context); final LoginResult r = loginUser(authUser); switch...

How do I create a new LoginResult, for example: `return LoginResult.USER_NEEDS_PASSWORD_RESET;` That's connected to a method call like this: ``` @Override protected Call userNeedsPassReset(final UsernamePasswordAuthUser authUser) { return routes.Account.changePassword(); }...