1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/app/controllers/user_logs_controller.rb
Jason Denney c98c53de76 Got logs working for users and bikes
Not my best work, but it works, need to add transactions, need to add edit/show actions
2012-12-14 00:03:11 -05:00

10 lines
173 B
Ruby

class UserLogsController < ActsAsLoggable::LogsController
before_filter :set_loggable_type
private
def set_loggable_type
@loggable_type = 'User'
end
end