Merge pull request #464 from ZcashFoundation/develop

Release 1.5
This commit is contained in:
Daniel Ternyak 2019-07-08 17:09:26 -05:00 committed by GitHub
commit cddf392c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -85,6 +85,8 @@ def proposal_rejected(email_args):
def proposal_contribution(email_args):
if email_args['contribution'].private:
email_args['contributor'] = None
return {
'subject': 'You just got a contribution!',
'title': 'You just got a contribution',

View File

@ -122,6 +122,7 @@ def create_user(
@blueprint.route("/auth", methods=["POST"])
@limiter.limit("30/hour;5/minute")
@body({
"email": fields.Str(required=True),
"password": fields.Str(required=True)