mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 00:42:53 +00:00
10 lines
218 B
Python
10 lines
218 B
Python
from django import forms
|
|
|
|
class RepoShareForm(forms.Form):
|
|
"""
|
|
Form for sharing repo to user or group.
|
|
"""
|
|
|
|
email_or_group = forms.CharField(max_length=512)
|
|
repo_id = forms.CharField(max_length=36)
|