private static function login_logoutCurrentAccount($post)
 {
     if (v::key('logout', v::stringType())->validate($post)) {
         AuthData::deleteAuthToken(array(':identifier' => $post['logout']));
         return true;
     }
     return false;
 }