Rubocop rules
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
class TeamsController < ApplicationController
|
||||
before_action :set_team, only: %i[ show edit update destroy ]
|
||||
before_action :set_company
|
||||
before_action :set_team, only: %i[show edit update destroy]
|
||||
|
||||
# GET /teams or /teams.json
|
||||
def index
|
||||
@@ -7,8 +8,7 @@ class TeamsController < ApplicationController
|
||||
end
|
||||
|
||||
# GET /teams/1 or /teams/1.json
|
||||
def show
|
||||
end
|
||||
def show; end
|
||||
|
||||
# GET /teams/new
|
||||
def new
|
||||
@@ -16,17 +16,16 @@ class TeamsController < ApplicationController
|
||||
end
|
||||
|
||||
# GET /teams/1/edit
|
||||
def edit
|
||||
end
|
||||
def edit; end
|
||||
|
||||
# POST /teams or /teams.json
|
||||
def create
|
||||
@team = Team.new(team_params)
|
||||
@team.company = Company.first
|
||||
@team.company = @company
|
||||
|
||||
respond_to do |format|
|
||||
if @team.save
|
||||
format.html { redirect_to team_url(@team), notice: "Team was successfully created." }
|
||||
format.html { redirect_to team_url(@team), notice: t('.team_created') }
|
||||
format.json { render :show, status: :created, location: @team }
|
||||
else
|
||||
format.html { render :new, status: :unprocessable_entity }
|
||||
@@ -37,10 +36,9 @@ class TeamsController < ApplicationController
|
||||
|
||||
# PATCH/PUT /teams/1 or /teams/1.json
|
||||
def update
|
||||
@team.company = Company.first
|
||||
respond_to do |format|
|
||||
if @team.update(team_params)
|
||||
format.html { redirect_to team_url(@team), notice: "Team was successfully updated." }
|
||||
format.html { redirect_to team_url(@team), notice: t('.team_updated') }
|
||||
format.json { render :show, status: :ok, location: @team }
|
||||
else
|
||||
format.html { render :edit, status: :unprocessable_entity }
|
||||
@@ -54,19 +52,20 @@ class TeamsController < ApplicationController
|
||||
@team.destroy!
|
||||
|
||||
respond_to do |format|
|
||||
format.html { redirect_to teams_url, notice: "Team was successfully destroyed." }
|
||||
format.html { redirect_to teams_url, notice: t('.team_destroyed') }
|
||||
format.json { head :no_content }
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_team
|
||||
@team = Team.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def team_params
|
||||
params.require(:team).permit(:name)
|
||||
end
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_team
|
||||
@team = Team.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def team_params
|
||||
params.require(:team).permit(:name, :description)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user