diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-01 08:20:44 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-24 11:52:15 -0400 |
commit | e9edaab3588b18677c2b37a3115f447307e64689 (patch) | |
tree | 96476f46d4896f4f3b81c5c3c7e637a10dfcef4d /lib/router.php | |
parent | 5d5b9f7022ad144cc747a33bcabea773d2f92b28 (diff) |
Twitter OAuth server dance working
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index 19839b997..6651773c0 100644 --- a/lib/router.php +++ b/lib/router.php @@ -88,6 +88,10 @@ class Router $m->connect('doc/:title', array('action' => 'doc')); + // Twitter + + $m->connect('twitter/authorization', array('action' => 'twitterauthorization')); + // facebook $m->connect('facebook', array('action' => 'facebookhome')); |