foodsoft/app/controllers/admin/bank_gateways_controller.rb
Philipp Rothmann fb2b4d8a8a chore: rubocop
chore: fix api test conventions

chore: rubocop -A spec/

chore: more rubocop -A

fix failing test

rubocop fixes

removes helper methods that are in my opinion dead code

more rubocop fixes

rubocop -a --auto-gen-config
2023-06-09 17:35:05 +02:00

41 lines
1.1 KiB
Ruby

class Admin::BankGatewaysController < Admin::BaseController
inherit_resources
def new
@bank_gateway = BankGateway.new(params[:bank_gateway])
render layout: false
end
def edit
@bank_gateway = BankGateway.find(params[:id])
render action: 'new', layout: false
end
def create
@bank_gateway = BankGateway.new(params[:bank_gateway])
if @bank_gateway.valid? && @bank_gateway.save
redirect_to update_bank_gateways_admin_finances_url, status: :see_other
else
render action: 'new', layout: false
end
end
def update
@bank_gateway = BankGateway.find(params[:id])
if @bank_gateway.update(params[:bank_gateway])
redirect_to update_bank_gateways_admin_finances_url, status: :see_other
else
render action: 'new', layout: false
end
end
def destroy
@bank_gateway = BankGateway.find(params[:id])
@bank_gateway.destroy
redirect_to update_bank_gateways_admin_finances_url, status: :see_other
rescue StandardError => e
flash.now[:alert] = e.message
render template: 'shared/alert'
end
end