Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
[bug] Seed Password's strength [Closes #908]
Browse files Browse the repository at this point in the history
  • Loading branch information
codydaig committed Sep 13, 2015
1 parent fe0d106 commit 1095131
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion config/assets/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ module.exports = {
'public/lib/angular-ui-router/release/angular-ui-router.min.js',
'public/lib/angular-ui-utils/ui-utils.min.js',
'public/lib/angular-bootstrap/ui-bootstrap-tpls.min.js',
'public/lib/angular-file-upload/angular-file-upload.min.js'
'public/lib/angular-file-upload/angular-file-upload.min.js',
'public/lib/owasp-password-strength-test/owasp-password-strength-test.js'
]
},
css: 'public/dist/application.min.css',
Expand Down
4 changes: 2 additions & 2 deletions config/lib/seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ console.log(chalk.bold.red('Warning: Database seeding is turned on'));

var seedUser = {
username: 'user',
password: '1234',
password: 'User_Password1!',
provider: 'local',
email: 'user@localhost.com',
firstName: 'User',
Expand All @@ -20,7 +20,7 @@ var seedUser = {

var seedAdmin = {
username: 'admin',
password: '1234',
password: 'Admin_Password1!',
provider: 'local',
email: 'admin@localhost.com',
firstName: 'Admin',
Expand Down

0 comments on commit 1095131

Please sign in to comment.