2013-01-23 15:14:20 +01:00
|
|
|
class Projects::TeamsController < Projects::ApplicationController
|
|
|
|
|
2013-01-24 10:19:09 +01:00
|
|
|
def available
|
2013-01-23 15:14:20 +01:00
|
|
|
@teams = current_user.is_admin? ? UserTeam.scoped : current_user.user_teams
|
|
|
|
@teams = @teams.without_project(project)
|
|
|
|
unless @teams.any?
|
2013-03-17 20:46:54 +01:00
|
|
|
redirect_to project_team_index_path(project), notice: "No available teams for assigment."
|
2013-01-23 15:14:20 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def assign
|
|
|
|
unless params[:team_id].blank?
|
|
|
|
team = UserTeam.find(params[:team_id])
|
|
|
|
access = params[:greatest_project_access]
|
|
|
|
team.assign_to_project(project, access)
|
|
|
|
end
|
|
|
|
redirect_to project_team_index_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def resign
|
|
|
|
team = project.user_teams.find_by_path(params[:id])
|
|
|
|
team.resign_from_project(project)
|
|
|
|
|
|
|
|
redirect_to project_team_index_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|