Farmbot-Web-App/app/models/primitive_pair.rb

12 lines
242 B
Ruby

# Support class for Fragment. Please see fragment.rb for documentation.
class PrimitivePair < ApplicationRecord
belongs_to :fragment
belongs_to :arg_name
belongs_to :arg_set
belongs_to :primitive
def broadcast?
false
end
end