work on ses integration

This commit is contained in:
albert
2013-03-08 17:41:40 -05:00
parent b8e5ba9098
commit 626c34b893
2 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
class TagAliasesController < ApplicationController
before_filter :admin_only, :only => [:approve, :destroy]
before_filter :member_only, :only => [:create]
before_filter :admin_only, :only => [:approve, :destroy, :create]
respond_to :html, :xml, :json, :js
def new

View File

@@ -292,5 +292,11 @@ module Danbooru
def pixa_password
nil
end
# If you wish to proxy emails through Amazon SES
def amazon_ses
# {:smtp_server_name => "smtp server name", :user_name => "amazon user name", :ses_smtp_user_name => "smtp user name", :ses_smtp_password => "smtp password"}
nil
end
end
end