mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-09-13 23:21:38 -04:00
Not my best work, but it works, need to add transactions, need to add edit/show actions
10 lines
173 B
Ruby
10 lines
173 B
Ruby
class UserLogsController < ActsAsLoggable::LogsController
|
|
before_filter :set_loggable_type
|
|
|
|
private
|
|
|
|
def set_loggable_type
|
|
@loggable_type = 'User'
|
|
end
|
|
end
|