Chris Wilton-Magras
Chris Wilton-Magras
Doro tried it, didn't work 😢
You'll need to provide more information about how you are using this component (e.g. importing / requiring, or using a script tag in html), and what your gulp build is...
AWS ECS can do this for us. Additionally, cloudfront and/or apigateway have throttling and other security measures we can enable. https://docs.aws.amazon.com/elasticloadbalancing/latest/application/application-load-balancers.html https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-awswaf.html
This is now low priority, as our application is secured via Cognito auth. We would be able to spot bad actors via login names, although we will need to ensure...
**Update** We are now logging username on successful token verification, which happens on every request to our API: these pass through CloudFront, as direct access to the load balancer is...
Possibly need to be more specific about what to expect for confirmation of email sending?
This needs more precise info - we need to identify which components need changes, before accepting this one as Ready.
@gsproston-scottlogic Consider this piece of code: ``` enum LEVEL_NAMES { LEVEL_1, LEVEL_2, LEVEL_3, SANDBOX, } // Using enum in a loop Object.values(LEVEL_NAMES) .filter((value) => Number.isNaN(Number(value))) .map((value) => { // do...
1. String-valued enums can very easily be converted to standard objects: ``` const RagStates = { RED: 'Error', AMBER: 'Warning', GREEN: 'Ok', } as const; type Rag = keyof typeof...
@jamierytlewski, `title` is null according to the error message, it has nothing to do with your env var. Plus you have a double curly brace at the end of your...