mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-09 18:03:44 +02:00
Allow listing a user by both ID and email. Useful for checking if a user exists by its email.
This commit is contained in:
@@ -75,7 +75,11 @@ class UserController extends BaseController
|
||||
*/
|
||||
public function view(Request $request, $id)
|
||||
{
|
||||
$query = Models\User::where('id', $id);
|
||||
if(is_numeric($id)) {
|
||||
$query = Models\User::where('id', $id);
|
||||
} else {
|
||||
$query = Models\User::where('email', $id);
|
||||
}
|
||||
|
||||
if (! is_null($request->input('fields'))) {
|
||||
foreach (explode(',', $request->input('fields')) as $field) {
|
||||
|
||||
Reference in New Issue
Block a user