mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01: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
|