lib/avo/fields/has_and_belongs_to_many_field.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Avo
  module Fields
    class HasAndBelongsToManyField < HasBaseField
      def initialize(id, **args, &block)
        args[:updatable] = false

        only_on Avo.configuration.resource_default_view

        super(id, **args, &block)
      end

      def view_component_name
        "HasManyField"
      end
    end
  end
end