Merge branch 'main' into sspj/domain-model

This commit is contained in:
Seamus Johnston 2022-11-28 11:53:22 -06:00
commit 758c645943
No known key found for this signature in database
GPG key ID: 2F21225985069105
37 changed files with 1339 additions and 232 deletions

View file

@ -138,3 +138,17 @@ In an effort to keep our domain logic centralized, we are representing the state
objects in the application using the [django-fsm](https://github.com/viewflow/django-fsm)
library. See the [ADR number 15](../architecture/decisions/0015-use-django-fs.md) for
more information on the topic.
## Login Time Bug
If you are seeing errors related to openid complaining about issuing a token from the future like this:
```
ERROR [djangooidc.oidc:243] Issued in the future
```
it may help to resync your laptop with time.nist.gov:
```
sudo sntp -sS time.nist.gov
```