Skip to content

Commit

Permalink
Merge pull request #4289 from gitcoinco/fix/jobdata-save
Browse files Browse the repository at this point in the history
Fix save job data on onboard and settings
  • Loading branch information
thelostone-mc authored Apr 26, 2019
2 parents 7c95623 + 5dbbbb3 commit c5993cf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,22 @@

# api views
url(r'^api/v0.1/profile/(.*)?/keywords', dashboard.views.profile_keywords, name='profile_keywords'),
url(
r'^api/v0.1/profile/(.*)?/jobopportunity',
dashboard.views.profile_job_opportunity,
name='profile_job_opportunity'
),
url(r'^api/v0.1/profile/(?P<handle>.*)', dashboard.views.profile_details, name='profile_details'),
url(
r'^api/v0.1/get_suggested_contributors',
dashboard.views.get_suggested_contributors,
name='get_suggested_contributors'
),
url(r'^api/v0.1/profile/(?P<handle>.*)', dashboard.views.profile_details, name='profile_details'),
url(
r'^api/v0.1/social_contribution_email',
dashboard.views.social_contribution_email,
name='social_contribution_email'
),
url(
r'^api/v0.1/profile/(.*)?/jobopportunity',
dashboard.views.profile_job_opportunity,
name='profile_job_opportunity'
),
url(r'^api/v0.1/bountydocument', dashboard.views.bounty_upload_nda, name='bounty_upload_nda'),
url(r'^api/v0.1/faucet/save/?', faucet.views.save_faucet, name='save_faucet'),
url(r'^api/v0.1/', include(dbrouter.urls)),
Expand Down

0 comments on commit c5993cf

Please sign in to comment.