ozfortress/citadel

View on GitHub
app/models/forums/post_edit.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Forums
  class PostEdit < ApplicationRecord
    default_scope { order(created_at: :desc) }

    belongs_to :post, inverse_of: :edits, counter_cache: :edits_count
    belongs_to :created_by, class_name: 'User'

    validates :content, presence: true, length: { in: 10..10_000 }

    self.per_page = 8
  end
end