Move admin team members management to own controller
This commit is contained in:
parent
9d318db48f
commit
9804b7df68
9 changed files with 173 additions and 23 deletions
12
app/controllers/admin/teams/application_controller.rb
Normal file
12
app/controllers/admin/teams/application_controller.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Provides a base class for Admin controllers to subclass
|
||||
#
|
||||
# Automatically sets the layout and ensures an administrator is logged in
|
||||
class Admin::Teams::ApplicationController < Admin::ApplicationController
|
||||
before_filter :user_team
|
||||
|
||||
private
|
||||
|
||||
def user_team
|
||||
@team = UserTeam.find_by_path(params[:team_id])
|
||||
end
|
||||
end
|
35
app/controllers/admin/teams/members_controller.rb
Normal file
35
app/controllers/admin/teams/members_controller.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
class Admin::Teams::MembersController < Admin::Teams::ApplicationController
|
||||
def new
|
||||
@users = User.active
|
||||
@users = @users.not_in_team(@team) if @team.members.any?
|
||||
@users = UserDecorator.decorate @users
|
||||
end
|
||||
|
||||
def create
|
||||
unless params[:user_ids].blank?
|
||||
user_ids = params[:user_ids]
|
||||
access = params[:default_project_access]
|
||||
is_admin = params[:group_admin]
|
||||
@team.add_members(user_ids, access, is_admin)
|
||||
end
|
||||
|
||||
redirect_to admin_team_path(@team), notice: 'Members was successfully added.'
|
||||
end
|
||||
|
||||
def edit
|
||||
@member = @team.members.find(params[:id])
|
||||
end
|
||||
|
||||
def update
|
||||
@member = @team.members.find(params[:id])
|
||||
options = {default_projects_access: params[:default_project_access], group_admin: params[:group_admin]}
|
||||
if @team.update_membership(@member, options)
|
||||
redirect_to admin_team_path(@team), notice: 'Membership was successfully updated.'
|
||||
else
|
||||
render :edit
|
||||
end
|
||||
end
|
||||
|
||||
def destroy
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue