hummingbird-me/kitsu-server

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Mappable
  extend ActiveSupport::Concern

  included do
    has_many :mappings, as: 'item', dependent: :destroy, inverse_of: :item
    accepts_nested_attributes_for :mappings
  end
end