mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-06 18:04:35 -04:00
Clean up error logs
This commit is contained in:
parent
35562077c8
commit
93cec78d6e
@ -65,6 +65,21 @@ class UserController extends BaseController
|
|||||||
return Redirect::to('/dashboard');
|
return Redirect::to('/dashboard');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display the specified resource.
|
||||||
|
*
|
||||||
|
* @param int $id
|
||||||
|
* @param mixed $publicId
|
||||||
|
*
|
||||||
|
* @return Response
|
||||||
|
*/
|
||||||
|
public function show($publicId)
|
||||||
|
{
|
||||||
|
Session::reflash();
|
||||||
|
|
||||||
|
return redirect("users/$publicId/edit");
|
||||||
|
}
|
||||||
|
|
||||||
public function edit($publicId)
|
public function edit($publicId)
|
||||||
{
|
{
|
||||||
$user = User::where('account_id', '=', Auth::user()->account_id)
|
$user = User::where('account_id', '=', Auth::user()->account_id)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user