Added 'login' command that gives you a link that can be used to login to the website

This commit is contained in:
Craig Andrews
2009-12-05 21:03:27 -05:00
parent cb2966a64c
commit 75cac0fd6b
10 changed files with 121 additions and 9 deletions

View File

@@ -41,6 +41,12 @@ class CommandInterpreter
return null;
}
return new HelpCommand($user);
case 'login':
if ($arg) {
return null;
} else {
return new LoginCommand($user);
}
case 'subscribers':
if ($arg) {
return null;