docs: Document video resolution config.
[mediagoblin.git] / mediagoblin / oauth / forms.py
CommitLineData
405aa45a 1import wtforms
405aa45a 2
3class AuthorizeForm(wtforms.Form):
4 """ Form used to authorize the request token """
5
6 oauth_token = wtforms.HiddenField("oauth_token")
7 oauth_verifier = wtforms.HiddenField("oauth_verifier")