Skip to content

Commit

Permalink
Add empty claim_user_form_get and claim_user_form_post. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cslzchen committed Jul 17, 2016
1 parent c9dc259 commit c8a0fac
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions website/project/views/contributor.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,37 @@ def replace_unclaimed_user_with_registered(user):
'Successfully claimed contributor.', kind='success', trust=False)


@collect_auth
def claim_user_form_get(auth, uid=None, pid=None, token=None, **kwargs):
"""
:param auth:
:param uid:
:param pid:
:param token:
:param kwargs:
:return:
"""

pass


@collect_auth

def claim_user_form_post(auth, uid=None, pid=None, token=None, **kwargs):
"""
:param auth:
:param uid:
:param pid:
:param token:
:param kwargs:
:return:
"""

pass


@collect_auth
def claim_user_form(auth, **kwargs):
"""
Expand Down

0 comments on commit c8a0fac

Please sign in to comment.