oneclickorgs/one-click-orgs

View on GitHub
app/models/seen_notification.rb

Summary

Maintainability
A
0 mins
Test Coverage
# A SeenNotification is created when a particular member has seen a particular
# notification, so that we can avoid showing it to them again.
class SeenNotification < ActiveRecord::Base
  attr_accessible :notification
  
  belongs_to :member
end