smc/grandham

View on GitHub
app/models/new_item.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class NewItem < ApplicationRecord
  belongs_to :creatable, polymorphic: true

  scope :not_reviewed, -> { where(state: "open") }

  belongs_to :user
  belongs_to :language
end