summaryrefslogtreecommitdiff
path: root/app/models/project_snippet.rb
blob: 25b5d7776411273af6aabdc6f7766113cb2b9441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class ProjectSnippet < Snippet
  belongs_to :project
  belongs_to :author, class_name: "User"

  validates :project, presence: true

  # Scopes
  scope :fresh, -> { order("created_at DESC") }

  participant :author
  participant :notes_with_associations
end