Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
marjinal1st committed Sep 10, 2013
1 parent 62039a1 commit 6f57aa7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#### [Current]

####
* [7c1f307](../../commit/7c1f307) - __(Muhammet DİLEK)__ [#20](../../issues/20) show_for config added
* [ca81bb4](../../commit/ca81bb4) - __(Muhammet DİLEK)__ [#20](../../issues/20) detail page added
* [19c5718](../../commit/19c5718) - __(Ahmet Sezgin Duran)__ Update README.md
* [560fd1b](../../commit/560fd1b) - __(Ahmet Sezgin Duran)__ [#24](../../issues/24) Clean up code and add login links to README.md
* [c581aa2](../../commit/c581aa2) - __(Ahmet Sezgin Duran)__ [#24](../../issues/24) Create default users for development and update README.md
* [1943cab](../../commit/1943cab) - __(Muhammet DİLEK)__ [#20](../../issues/20) edit and new page added
* [6206a77](../../commit/6206a77) - __(Muhammet DİLEK)__ [#20](../../issues/20) pagination view added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
22 changes: 7 additions & 15 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6f57aa7

Please sign in to comment.