ensl.org/app/controllers/bans_controller.rb
Ari Timonen e59e8ac8e7 Lots of rails 4 updates
- Add .params to models and update controllers
- Add afk time to gather
- Reannotate models
- Fix rspec problem by using latest rspec plugins from github
2020-03-18 05:38:17 +02:00

54 lines
1,003 B
Ruby

class BansController < ApplicationController
before_action :get_ban, only: [:show, :edit, :update, :destroy]
def index
@bans = Ban.ordered
end
def show
end
def new
@ban = Ban.new
raise AccessError unless @ban.can_create? cuser
end
def edit
raise AccessError unless @ban.can_update? cuser
end
def create
@ban = Ban.new(Ban.params(params, cuser))
raise AccessError unless @ban.can_create? cuser
@ban.creator = cuser
if @ban.save
flash[:notice] = t(:bans_create)
redirect_to(@ban)
else
render :new
end
end
def update
raise AccessError unless @ban.can_update? cuser
if @ban.update_attributes(Ban.params(params, cuser))
flash[:notice] = t(:bans_update)
redirect_to(@ban)
else
render :edit
end
end
def destroy
raise AccessError unless @ban.can_destroy? cuser
@ban.destroy
redirect_to(bans_url)
end
private
def get_ban
@ban = Ban.find(params[:id])
end
end