Skip to content

Commit

Permalink
Update new user registration questions
Browse files Browse the repository at this point in the history
  • Loading branch information
kabilar authored and waxlamp committed Oct 22, 2024
1 parent eacbd07 commit ad03897
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions dandiapi/api/views/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,15 @@ def auth_token_view(request: Request) -> HttpResponseBase:
QUESTIONS = [
{'question': 'First Name', 'max_length': 100},
{'question': 'Last Name', 'max_length': 100},
{'question': 'What do you plan to use DANDI for?', 'max_length': 1000},
{'question': 'Please list any affiliations you have.', 'max_length': 1000},
{'question': 'Affiliation(s)', 'max_length': 1000},
{'question': 'Lab/project website', 'max_length': 1000},
{
'question': 'Please describe how your research project will utilize'
' DANDI resources. (Please note that users can freely'
' search, view, and download public datasets without'
' an account.)',
'max_length': 1000,
},
]

# questions for new users
Expand Down

0 comments on commit ad03897

Please sign in to comment.