kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
19 years ago
|
# 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.
|
||
|
|
||
|
class AdminController < ApplicationController
|
||
19 years ago
|
layout 'base'
|
||
|
before_filter :require_admin
|
||
|
|
||
|
helper :sort
|
||
|
include SortHelper
|
||
19 years ago
|
|
||
19 years ago
|
def index
|
||
|
end
|
||
19 years ago
|
|
||
|
def projects
|
||
19 years ago
|
sort_init 'name', 'asc'
|
||
|
sort_update
|
||
|
@project_count = Project.count
|
||
|
@project_pages = Paginator.new self, @project_count,
|
||
|
15,
|
||
|
@params['page']
|
||
|
@projects = Project.find :all, :order => sort_clause,
|
||
|
:limit => @project_pages.items_per_page,
|
||
18 years ago
|
:offset => @project_pages.current.offset
|
||
|
|
||
|
render :action => "projects", :layout => false if request.xhr?
|
||
19 years ago
|
end
|
||
19 years ago
|
|
||
19 years ago
|
def mail_options
|
||
19 years ago
|
@actions = Permission.find(:all, :conditions => ["mail_option=?", true]) || []
|
||
19 years ago
|
if request.post?
|
||
|
@actions.each { |a|
|
||
19 years ago
|
a.mail_enabled = (params[:action_ids] || []).include? a.id.to_s
|
||
19 years ago
|
a.save
|
||
|
}
|
||
19 years ago
|
flash.now[:notice] = l(:notice_successful_update)
|
||
19 years ago
|
end
|
||
|
end
|
||
|
|
||
|
def info
|
||
|
@adapter_name = ActiveRecord::Base.connection.adapter_name
|
||
19 years ago
|
end
|
||
19 years ago
|
end
|