- replaced hardcoded www.openstreetmap.org with environment variable

- added preferences action to user
- added column preferences to user table
This commit is contained in:
Immanuel Scholz 2007-01-14 01:29:52 +00:00
parent 1ecf13d846
commit 85d8a2d177
7 changed files with 22 additions and 6 deletions

View file

@ -52,7 +52,8 @@ end
# Include your application configuration below
API_VERSION = '0.4'
API_VERSION = ENV['OSM_API_VERSION'] || '0.4'
SERVER_URL = ENV['OSM_SERVER_URL'] || 'www.openstreetmap.org'
ActionMailer::Base.server_settings = {
:address => "localhost",