Commit 49eb65e9 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Added LDAPS support migration and fixed connection test flash messages.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@845 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 4c509c94
......@@ -65,10 +65,10 @@ class AuthSourcesController < ApplicationController
@auth_method = AuthSource.find(params[:id])
begin
@auth_method.test_connection
flash[:notice] = l(:notice_successful_connection)
rescue => text
flash[:notice] = text
flash[:error] = "Unable to connect (#{text})"
end
flash[:notice] ||= l(:notice_successful_connection)
redirect_to :action => 'list'
end
......
class AddAuthSourcesTls < ActiveRecord::Migration
def self.up
add_column :auth_sources, :tls, :boolean, :default => false, :null => false
end
def self.down
remove_column :auth_sources, :tls
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment