fix #104
This commit is contained in:
parent
0dd39e6984
commit
2e87b53024
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -19,6 +19,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
## [2.9.6 - 2020-10-13]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added link to personal website on About page.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Allow `data:` images in Netlify CSP.
|
||||||
|
- Fix inability to DM login links in releases (#104).
|
||||||
|
|
||||||
## [2.9.5 - 2020-10-11]
|
## [2.9.5 - 2020-10-11]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -41,3 +41,7 @@ config :backend, :crawler,
|
||||||
config :backend, Backend.Mailer,
|
config :backend, Backend.Mailer,
|
||||||
adapter: Swoosh.Adapters.Sendgrid,
|
adapter: Swoosh.Adapters.Sendgrid,
|
||||||
api_key: System.get_env("SENDGRID_API_KEY")
|
api_key: System.get_env("SENDGRID_API_KEY")
|
||||||
|
|
||||||
|
config :backend, Mastodon.Messenger,
|
||||||
|
domain: System.get_env("MASTODON_DOMAIN"),
|
||||||
|
token: System.get_env("MASTODON_TOKEN")
|
||||||
|
|
Loading…
Reference in a new issue