-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62039a1
commit 6f57aa7
Showing
3 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,14 @@ You must have | |
Admin: | ||
* Email: [email protected], Password: '12341234' | ||
|
||
Login on: http://localhost:3000/hq/dashboard.html | ||
Login on: ['/hq/login'](http://localhost:3000/hq/login) | ||
|
||
Users: | ||
* Email: [email protected], Password: '12341234' | ||
* Email: [email protected], Password: '12341234' | ||
* Email: [email protected], Password: '12341234' | ||
|
||
Login on: http://localhost:3000/users/sign_in | ||
Login on: ['/users/sign_in'](http://localhost:3000/users/sign_in) | ||
|
||
## CONTACT | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,22 +6,14 @@ | |
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) | ||
# Mayor.create(name: 'Emanuel', city: cities.first) | ||
if Rails.env.development? | ||
admin = Admin.create!(email: '[email protected]', | ||
password: '12341234', | ||
password_confirmation: '12341234') | ||
admin = Admin.create!(email: '[email protected]', password: '12341234', password_confirmation: '12341234') | ||
|
||
user1 = User.create!(name: 'User 1', | ||
email: '[email protected]', | ||
password: '12341234', | ||
password_confirmation: '12341234') | ||
user1 = User.create!(name: 'User 1', email: '[email protected]', | ||
password: '12341234', password_confirmation: '12341234') | ||
|
||
user2 = User.create!(name: 'User 2', | ||
email: '[email protected]', | ||
password: '12341234', | ||
password_confirmation: '12341234') | ||
user2 = User.create!(name: 'User 2', email: '[email protected]', | ||
password: '12341234', password_confirmation: '12341234') | ||
|
||
user3 = User.create!(name: 'User 3', | ||
email: '[email protected]', | ||
password: '12341234', | ||
password_confirmation: '12341234') | ||
user3 = User.create!(name: 'User 3', email: '[email protected]', | ||
password: '12341234', password_confirmation: '12341234') | ||
end |