mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 19:53:00 +01:00
17 lines
249 B
PHP
17 lines
249 B
PHP
<?php
|
|
|
|
/**
|
|
* Logs users into their account
|
|
*/
|
|
class AuthController extends Controller {
|
|
public function showLogin() {
|
|
return 'Coming soon...';
|
|
}
|
|
|
|
public function logoutAction() {
|
|
Auth::logut();
|
|
|
|
return Redirect::to('/');
|
|
}
|
|
}
|