mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-29 16:37:20 +02:00
8 lines
102 B
Ruby
8 lines
102 B
Ruby
|
|
class Note < ActiveRecord::Base
|
||
|
|
belongs_to :user
|
||
|
|
belongs_to :project
|
||
|
|
|
||
|
|
attr_protected :user
|
||
|
|
|
||
|
|
end
|