expertiza/expertiza

View on GitHub
app/models/track_notification.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class TrackNotification < ApplicationRecord
  # attr_accessible :notification
  validates :notification_id, presence: true
  validates :user_id, presence: true
  belongs_to :notification
  belongs_to :user
end