mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
128 B
Ruby
10 lines
128 B
Ruby
class DocumentRevision < ApplicationRecord
|
|
acts_as_paranoid
|
|
|
|
belongs_to :document
|
|
|
|
def user
|
|
document.user
|
|
end
|
|
end
|