You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
420 B
27 lines
420 B
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class NewAuthController extends Controller
|
|
{
|
|
public function emailChecking()
|
|
{
|
|
if (1) {
|
|
// email exists in db
|
|
}
|
|
|
|
if (2) {
|
|
// email exists in cache
|
|
}
|
|
|
|
if (3) {
|
|
// email exists in invite table
|
|
}
|
|
|
|
if (4) {
|
|
// none of above
|
|
}
|
|
}
|
|
}
|