Stefan
Stefan
Hi @jeremydaly and @GeertWille any news on this one? It would be helpful for us as well. We need to get date objects back from created/modified etc. With `inverseTransform` or...
Waiting for this one as well..
This PR has been there for ages: https://github.com/jeremydaly/dynamodb-toolbox/pull/90
I am experiencing the same issue. Found the error @koorukuroo ``` u = Cognito('eu-west-1_xxxx', 'xxxx', client_secret='xxxxx',username='[email protected]') u.add_base_attributes(email='[email protected]',locale='nl_NL',given_name='Test',family_name='Test') u.register('[email protected]','Test1234!') ``` You have to add the username to Cognito() as well.
See my code above, did you add `username='[email protected]'`?
+1. We use this feature to import configs for different API's. We are running into this issue so we are not using the [importOnBootstrap](https://github.com/boazpoolman/strapi-plugin-config-sync#import-on-bootstrap) feature. One example: - We have...
I am working on a single API. The API will be used for front- and backend (for both authenticated and unauthenticated users and admins). It would be nice to disable...
We have exactly the same question. I do have a prerender server up and running. Redirect based on user agent could be a solution?
I was also looking into this. I found a (temp?) solution: Change your `-cloudformation-template.json`: Under Resources add: ``` "VpcConfig": { "SecurityGroupIds": [ "sg-xxx" ], "SubnetIds": [ "subnet-xxx", "subnet-xxx", "subnet-xxx" ]...
@paultipper this works for us: ``` "lambdaexecutionpolicy": { "DependsOn": [ "LambdaExecutionRole" ], "Type": "AWS::IAM::Policy", "Properties": { "PolicyName": "lambda-execution-policy", "Roles": [ { "Ref": "LambdaExecutionRole" } ], "PolicyDocument": { "Version": "2012-10-17", "Statement":...