armandofox/audience1st

View on GitHub
app/controllers/account_codes_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
81%
class AccountCodesController < ApplicationController

  before_filter :is_staff_filter

  # GET /account_codes
  # GET /account_codes.xml
  def index
    @account_codes = AccountCode.all
  end

  def new
    @account_code = AccountCode.new
  end

  def edit
    @account_code = AccountCode.find(params[:id])
  end

  def create
    @account_code = AccountCode.new(account_code_params)
    if @account_code.save
      flash[:notice] = 'Account code was successfully created.'
    else
      flash[:alert] = ['Account code could not be created:', @account_code.errors.as_html]
    end
    redirect_to account_codes_path
  end

  def update
    @account_code = AccountCode.find(params[:id])
    if @account_code.update_attributes(account_code_params)
      flash[:notice] = 'AccountCode was successfully updated.'
    else
      flash[:alert] = ['AccountCode could not be updated:', @account_code.errors.as_html]
    end
    redirect_to account_codes_path
  end

  def destroy
    @account_code = AccountCode.find(params[:id])
    @account_code.destroy or flash[:alert] = @account_code.errors[:base] 
    redirect_to account_codes_path
  end

  private

  def account_code_params
    params.require(:account_code).permit(:name, :code, :description, :donation_prompt)
  end
end