id.save!
end
- ID_KEY = id.key
+ if Kernel.const_defined?("Settings")
+ Settings.id_key = id.key
+ else
+ ID_KEY = id.key
+ end
unless potlatch = webmaster.client_applications.find_by_name("Potlatch 2")
potlatch = webmaster.client_applications.new
potlatch.save!
end
- POTLATCH2_KEY = potlatch.key
+ if Kernel.const_defined?("Settings")
+ Settings.potlatch2_key = potlatch.key
+ else
+ POTLATCH2_KEY = potlatch.key
+ end
unless website = webmaster.client_applications.find_by_name("Web Site")
website = webmaster.client_applications.new
website.save!
end
- OAUTH_KEY = website.key
+ if Kernel.const_defined?("Settings")
+ Settings.oauth_key = website.key
+ else
+ OAUTH_KEY = website.key
+ end
end
end