Fix bug in track list, also send accept/reject mails

This commit is contained in:
Matt Barringer 2013-01-17 13:56:05 +01:00
parent f10d5e4c0e
commit caa0dec6c4
7 changed files with 70 additions and 37 deletions

13
config/config.yml Normal file
View file

@ -0,0 +1,13 @@
defaults: &defaults
# The hostname to be used when building the URL in the emails
url_for_emails: localhost:3000
development:
<<: *defaults
test:
<<: *defaults
production:
<<: *defaults

View file

@ -0,0 +1 @@
OSEM_CONFIG = YAML.load_file("#{Rails.root}/config/config.yml")[Rails.env]