gistflow/gistflow

View on GitHub
app/concerns/models/notifiable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Models
  module Notifiable
    extend ActiveSupport::Concern
    
    included do
      has_many :notifications, as: :notifiable
    end
  end
end