Write-For-Change / emaildrafter

An app to let people draft personalised emails for a good cause
GNU General Public License v3.0
10 stars 3 forks source link

Hotfix: don't mix uri and self.uri badly #32

Closed edwinbalani closed 4 years ago

edwinbalani commented 4 years ago

If uri is None then self.uri is derived from envvar MONGODB_URI, but local variable uri (still None) is used to create the MongoDB client.

TODO: eliminate use of self.uri and possibly self.db_name (or make them properties). Have a single source of truth in self.client.uri.

This is an extension to #29.