Skip to content

Commit

Permalink
fix: demo login info
Browse files Browse the repository at this point in the history
  • Loading branch information
Hagith committed Feb 13, 2020
1 parent d4d1fc7 commit f668f40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
14 changes: 2 additions & 12 deletions apps/api/src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,8 @@ export class UsersService {
private readonly users: User[] = [
{
id: 1,
login: 'john',
password: 'changeme',
},
{
id: 2,
login: 'chris',
password: 'secret',
},
{
id: 3,
login: 'maria',
password: 'guess',
login: 'demo',
password: 'demo',
},
];

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/modules/auth/views/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</div>
<div class="form-group text-center">
<small class="text-muted">
Use <strong>admin@example.com</strong> / <strong>password</strong> to login
Use <strong>demo</strong> / <strong>demo</strong> to login
</small>
</div>
<div class="form-group">
Expand Down

0 comments on commit f668f40

Please sign in to comment.