diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-15 10:34:20 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-15 10:34:20 -0500 |
commit | 4834ef8ec21e985290f5e0015ae9452070956170 (patch) | |
tree | 365b6043f4a18a40a01d5aa13700ab98ee031613 /mediagoblin/oauth/forms.py | |
parent | 29cd702e4776811a96c3c088bd9ba8fc6f9176f0 (diff) | |
parent | 89909bd6921efb4ec3296c908c5d57eba35ebd21 (diff) | |
download | mediagoblin-4834ef8ec21e985290f5e0015ae9452070956170.tar.lz mediagoblin-4834ef8ec21e985290f5e0015ae9452070956170.tar.xz mediagoblin-4834ef8ec21e985290f5e0015ae9452070956170.zip |
Merge remote-tracking branch 'refs/remotes/tsyesika/master'
New oauth tools! Heck yeah!
Diffstat (limited to 'mediagoblin/oauth/forms.py')
-rw-r--r-- | mediagoblin/oauth/forms.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mediagoblin/oauth/forms.py b/mediagoblin/oauth/forms.py new file mode 100644 index 00000000..94c7cb52 --- /dev/null +++ b/mediagoblin/oauth/forms.py @@ -0,0 +1,7 @@ +import wtforms + +class AuthorizeForm(wtforms.Form): + """ Form used to authorize the request token """ + + oauth_token = wtforms.HiddenField("oauth_token") + oauth_verifier = wtforms.HiddenField("oauth_verifier") |