droptheplot/adminable

View on GitHub
lib/adminable/fields/belongs_to.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Adminable
  module Fields
    class BelongsTo < Base
      def key
        "#{name}_id"
      end
    end
  end
end