mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
11 lines
139 B
Ruby
11 lines
139 B
Ruby
class ActsAsLoggable::UserAction < ActiveRecord::Base
|
|
attr_accessible :action
|
|
|
|
has_many :logs
|
|
|
|
def to_s
|
|
self.action
|
|
end
|
|
end
|
|
|