Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdarkdragon committed Apr 23, 2018
1 parent 35ce8f3 commit 64626ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
3 changes: 2 additions & 1 deletion app/dashboard/migrations/0056_auto_20180423_1343.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='profile',
name='repos',
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(max_length=200), blank=True, default=[], size=None),
field=django.contrib.postgres.fields.ArrayField(
base_field=models.CharField(max_length=200), blank=True, default=[], size=None),
),
migrations.AddField(
model_name='profile',
Expand Down
12 changes: 4 additions & 8 deletions app/marketing/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,20 +405,16 @@ def get_settings_navs():
return [{
'body': 'Email',
'href': reverse('settings_email', args=('', ))
},
{
}, {
'body': 'Privacy',
'href': reverse('privacy_settings'),
},
{
}, {
'body': 'Matching',
'href': reverse('matching_settings'),
},
{
}, {
'body': 'Feedback',
'href': reverse('feedback_settings'),
},
{
}, {
'body': 'Slack',
'href': reverse('slack_settings'),
}]
Expand Down

0 comments on commit 64626ef

Please sign in to comment.