Class: AuthSourcesController
- Inherits:
-
ApplicationController
show all
- Defined in:
- app/controllers/auth_sources_controller.rb
Overview
redMine - project management software Copyright (C) 2006 Jean-Philippe
Lang
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc., 51
Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Instance Method Summary
(collapse)
accept_key_auth, #accept_key_auth_actions, #attach_files, #authorize, #check_if_login_required, #check_project_privacy, #current_role, #deny_access, #filename_for_content_disposition, #find_current_user, #logged_user=, #parse_qvalues, #per_page_option, #redirect_back_or_default, #render_403, #render_404, #render_error, #render_feed, #require_admin, #require_login, #set_localization, #user_setup
#current_menu_item, included, #menu_items, #redirect_to_project_menu_item
#current_language, #day_name, #find_language, #format_date, #format_time, included, #l, #l_hours, #l_or_humanize, #ll, #month_name, #set_language_if_valid, #valid_languages
Instance Method Details
- (Object) create
39
40
41
42
43
44
45
46
47
|
# File 'app/controllers/auth_sources_controller.rb', line 39
def create
@auth_source = AuthSourceLdap.new(params[:auth_source])
if @auth_source.save
flash[:notice] = l(:notice_successful_create)
redirect_to :action => 'list'
else
render :action => 'new'
end
end
|
- (Object) destroy
74
75
76
77
78
79
80
81
|
# File 'app/controllers/auth_sources_controller.rb', line 74
def destroy
@auth_source = AuthSource.find(params[:id])
unless @auth_source.users.find(:first)
@auth_source.destroy
flash[:notice] = l(:notice_successful_delete)
end
redirect_to :action => 'list'
end
|
- (Object) edit
49
50
51
|
# File 'app/controllers/auth_sources_controller.rb', line 49
def edit
@auth_source = AuthSource.find(params[:id])
end
|
- (Object) index
21
22
23
24
|
# File 'app/controllers/auth_sources_controller.rb', line 21
def index
list
render :action => 'list' unless request.xhr?
end
|
- (Object) list
30
31
32
33
|
# File 'app/controllers/auth_sources_controller.rb', line 30
def list
@auth_source_pages, @auth_sources = paginate :auth_sources, :per_page => 10
render :action => "list", :layout => false if request.xhr?
end
|
- (Object) new
35
36
37
|
# File 'app/controllers/auth_sources_controller.rb', line 35
def new
@auth_source = AuthSourceLdap.new
end
|
- (Object) test_connection
63
64
65
66
67
68
69
70
71
72
|
# File 'app/controllers/auth_sources_controller.rb', line 63
def test_connection
@auth_method = AuthSource.find(params[:id])
begin
@auth_method.test_connection
flash[:notice] = l(:notice_successful_connection)
rescue => text
flash[:error] = "Unable to connect (#{text})"
end
redirect_to :action => 'list'
end
|
- (Object) update
53
54
55
56
57
58
59
60
61
|
# File 'app/controllers/auth_sources_controller.rb', line 53
def update
@auth_source = AuthSource.find(params[:id])
if @auth_source.update_attributes(params[:auth_source])
flash[:notice] = l(:notice_successful_update)
redirect_to :action => 'list'
else
render :action => 'edit'
end
end
|