Almost usable, still a lot of work left

-Moved bikes to User model instead of profile
-User can copy user log to a bike log with new actsasloggable
-Added user stats
-some css was messing up checkboxes, need to figure out which stylesheet was doing that
This commit is contained in:
Jason Denney
2012-12-31 15:38:34 -05:00
parent 922af526c1
commit 189137ba9d
15 changed files with 117 additions and 17 deletions
-1
View File
@@ -1,7 +1,6 @@
FactoryGirl.define do
factory :user_profile do
user_id 1
bike_id 1
addrStreet1 "Charles Street"
addrStreet2 "Apt #42"
addrCity "Baltimore"
+1
View File
@@ -6,6 +6,7 @@ FactoryGirl.define do
first_name 'Michael'
last_name 'Scott'
user_role_id 1
sequence(:bike_id) { |n| n }
factory :staff do
first_name 'Staff'