expertiza/expertiza

View on GitHub
app/models/bookmark.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Bookmark < ApplicationRecord
  belongs_to :user
  belongs_to :topic
  has_many :bookmark_ratings
  validates :url, presence: true
  validates :title, presence: true
  validates :description, presence: true
end