actsasloggable transaction actions fixtures, resources, controller, and views

This commit is contained in:
Jason Denney
2012-12-09 18:11:18 -05:00
parent 139f5ccf9b
commit b2eefd8163
8 changed files with 112 additions and 0 deletions
@@ -0,0 +1,36 @@
class ActsAsLoggable::TransactionActionsController < AuthenticatedController
#TODO Fix this so updating works
expose(:transaction_action)
expose(:transaction_actions) { ActsAsLoggable::TransactionAction.order('id').paginate(:page => params[:page]) }
def index
end
def show
end
def new
end
def create
if transaction_action.save
redirect_to acts_as_loggable_transaction_actions_url
else
render :new
end
end
def update
puts transaction_action.inspect
if transaction_action.save
redirect_to acts_as_loggable_transaction_actions_url
else
render :edit
end
end
def destroy
transaction_action.destroy
redirect_to acts_as_loggable_transaction_actions_url
end
end