blob: b445b21215484e7672d5bf84e2abd13136103d9a (
plain)
1
2
3
4
5
6
7
8
|
class GemeinschaftSetup < ActiveRecord::Base
belongs_to :user
accepts_nested_attributes_for :user
belongs_to :sip_domain
accepts_nested_attributes_for :sip_domain
belongs_to :country
belongs_to :language
end
|