FarmBot/Farmbot-Web-App

View on GitHub
app/models/primitive_pair.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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