Added api/time_entry/delete method

This commit is contained in:
Jason Denney
2014-05-03 22:06:56 -04:00
parent 24facd4dee
commit d94c436ba5
4 changed files with 58 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FactoryGirl.define do
factory :time_entry do
loggable_type User.to_s
logger_type User.to_s
start_date Time.now
end_date Time.now
log_action_id 1
log_action_type ActsAsLoggable::UserAction.to_s
end
end