blob: 4b4dd37ff6a60ebc69ced47948ecc8927f83456d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
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
validates :default_company_name,
:presence => true,
:uniqueness => true
validates :default_system_email,
:presence => true,
:uniqueness => true
# Remove the cache which was created by the heater rake task.
#
after_create :expire_cache
before_validation :format_default_area_code
private
def expire_cache
ActionController::Base.expire_page(Rails.application.routes.url_helpers.new_gemeinschaft_setup_path)
end
def format_default_area_code
if self.default_area_code.blank?
self.default_area_code = nil
else
if self.country != nil && !self.country.trunk_prefix.blank?
self.default_area_code.gsub(/^#{self.country.trunk_prefix}/,'')
end
end
end
end
|