1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 10:22:46 +00:00
Files
seahub/share/forms.py

10 lines
218 B
Python
Raw Normal View History

2012-02-11 11:12:54 +08:00
from django import forms
2012-06-12 10:13:14 +08:00
class RepoShareForm(forms.Form):
2012-02-11 11:12:54 +08:00
"""
2012-06-12 10:13:14 +08:00
Form for sharing repo to user or group.
2012-02-11 11:12:54 +08:00
"""
2012-06-12 10:13:14 +08:00
email_or_group = forms.CharField(max_length=512)
2012-02-11 11:12:54 +08:00
repo_id = forms.CharField(max_length=36)