Skip to content

Commit

Permalink
move rating schema to top level of settings dict
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed Mar 21, 2018
1 parent f2e1622 commit e17b856
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dockereve-master/eve-app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,11 @@
'required': True
}
}
settings['DOMAIN']['rating'] ={
'type': 'dict',
'required': False,
'schema': deepcopy(rating_schema)
}

settings['DOMAIN']['rating_counts'] = {
'datasource': {
Expand Down Expand Up @@ -651,11 +656,6 @@
'required': True,
'schema': deepcopy(prov_schema)
},
'rating': {
'type': 'dict',
'required': False,
'schema': deepcopy(rating_schema)
},
}
)

Expand Down

0 comments on commit e17b856

Please sign in to comment.