Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
64b10c91
Unverified
Commit
64b10c91
authored
Jan 02, 2018
by
Viral Solani
Committed by
GitHub
Jan 02, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #127 from viralsolani/analysis-XN0Kn1
Apply fixes from StyleCI
parents
eed3f488
470cde32
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
29 deletions
+27
-29
UserRepository.php
app/Repositories/Backend/Access/User/UserRepository.php
+2
-2
ChangePasswordTest.php
tests/Feature/Backend/ChangePasswordTest.php
+12
-14
ManageUsersTest.php
tests/Feature/Backend/ManageUsersTest.php
+13
-13
No files found.
app/Repositories/Backend/Access/User/UserRepository.php
View file @
64b10c91
...
...
@@ -160,7 +160,7 @@ class UserRepository extends BaseRepository
}
/**
* Change Password
* Change Password
.
*
* @param $user
* @param $input
...
...
@@ -174,11 +174,11 @@ class UserRepository extends BaseRepository
$user
=
$this
->
find
(
access
()
->
id
());
if
(
Hash
::
check
(
$input
[
'old_password'
],
$user
->
password
))
{
$user
->
password
=
bcrypt
(
$input
[
'password'
]);
if
(
$user
->
save
())
{
event
(
new
UserPasswordChanged
(
$user
));
return
true
;
}
...
...
tests/Feature/Backend/ChangePasswordTest.php
View file @
64b10c91
...
...
@@ -2,14 +2,12 @@
namespace
Tests\Feature\Backend
;
use
Tests\TestCase
;
use
Illuminate\Support\Facades\Event
;
use
App\Events\Backend\Access\User\UserPasswordChanged
;
use
Illuminate\Support\Facades\Event
;
use
Tests\TestCase
;
class
ChangePasswordTest
extends
TestCase
{
/** @test */
public
function
a_user_require_old_password_to_change_password
()
{
...
...
tests/Feature/Backend/ManageUsersTest.php
View file @
64b10c91
...
...
@@ -2,16 +2,16 @@
namespace
Tests\Feature\Backend
;
use
Tests\TestCase
;
use
App\Models\Access\Role\Role
;
use
App\Models\Access\User\User
;
use
Illuminate\Support\Facades\Event
;
use
App\Models\Access\Permission\Permission
;
use
Illuminate\Support\Facades\Notification
;
use
App\Events\Backend\Access\User\UserCreated
;
use
App\Events\Backend\Access\User\UserDeleted
;
use
App\Events\Backend\Access\User\UserUpdated
;
use
App\Models\Access\Permission\Permission
;
use
App\Models\Access\Role\Role
;
use
App\Models\Access\User\User
;
use
App\Notifications\Frontend\Auth\UserNeedsConfirmation
;
use
Illuminate\Support\Facades\Event
;
use
Illuminate\Support\Facades\Notification
;
use
Tests\TestCase
;
class
ManageUsersTest
extends
TestCase
{
...
...
@@ -262,14 +262,13 @@ class ManageUsersTest extends TestCase
->
assertRedirect
(
route
(
'admin.access.user.index'
))
->
assertSessionHas
([
'flash_success'
=>
trans
(
'alerts.backend.users.updated'
)]);
$this
->
assertDatabaseHas
(
config
(
'access.users_table'
),[
$this
->
assertDatabaseHas
(
config
(
'access.users_table'
),
[
'id'
=>
$user
->
id
,
'first_name'
=>
$data
[
'first_name'
],
'last_name'
=>
$data
[
'last_name'
],
]);
Event
::
assertDispatched
(
UserUpdated
::
class
);
}
/** @test */
...
...
@@ -298,6 +297,7 @@ class ManageUsersTest extends TestCase
$this
->
assertDatabaseHas
(
config
(
'access.users_table'
),
[
'id'
=>
$this
->
admin
->
id
,
'deleted_at'
=>
null
]);
}
// change password
// export / import feature
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment