blob: 6a7514cdfa5ff14c3d37e679bf41c29da63f513a (
plain)
1
2
3
4
5
6
|
class Gateway < ActiveRecord::Base
attr_accessible :name, :technology, :inbound, :outbound, :description
has_many :gateway_settings, :dependent => :destroy
has_many :gateway_parameters, :dependent => :destroy
end
|