diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-01 08:20:44 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-01 08:20:44 +0000 |
commit | 6f4b2f0ac2f235332c850b050d9e4563fc71f89d (patch) | |
tree | 19c0d1b8c694792a026e9694c23365837c59a46b /lib/router.php | |
parent | a49272d448d75a6ab74515352345d8baacb96f1f (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 e10d484f4..582dfae6d 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')); |