Updates from the past fortnight

This commit is contained in:
Godwin
2015-04-14 19:41:46 -07:00
parent 37ee6cfee7
commit 14205f4586
28 changed files with 597 additions and 154 deletions
+4 -4
View File
@@ -35,13 +35,13 @@ BikeBike::Application.configure do
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address => 'mail.bikebike.org',
:domain => 'bikebike.org',
:port => 25,
:domain => 'preview.bikebike.org',
:port => 587,
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none',
:user_name => 'info@bikebike.org',
:password => '!NF)'
:user_name => 'info@preview.bikebike.org',
:password => 'test'
}
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
+1
View File
@@ -0,0 +1 @@
<html><head></head><body></body></html>
+1
View File
@@ -0,0 +1 @@
<html><head></head><body></body></html>
+4
View File
@@ -75,6 +75,10 @@ BikeBike::Application.routes.draw do
get '/robots.txt' => 'application#robots', :as => :robots_txt
get '/humans.txt' => 'application#humans', :as => :humans_txt
# get 'resources' => 'pages#resources'
#
get '/confirm/:token' => 'application#confirm', :as => :confirm
post '/doconfirm' => 'application#do_confirm', :as => :do_confirm
post '/translator-request' => 'application#translator_request', :as => :translator_request
get '/about' => 'application#about', :as => :about
get '/policy' => 'application#policy', :as => :policy