tab/app/controllers/transactions_controller.rb

35 lines
749 B
Ruby
Raw Normal View History

2015-09-08 13:25:54 +00:00
class TransactionsController < ApplicationController
2015-09-09 09:31:34 +00:00
skip_before_filter :verify_authenticity_token, :only => :create
2015-09-08 13:25:54 +00:00
def index
2015-09-08 18:45:32 +00:00
@transactions = Transaction.all
2015-09-08 13:25:54 +00:00
end
def new
@transaction = Transaction.new
end
def create
2015-09-09 09:31:34 +00:00
@transaction = current_user.outgoing_transactions.build(
transaction_params.merge(origin: I18n.t('origin.created_by_user'))
2015-09-08 19:07:00 +00:00
if @transaction.save
redirect_to current_user
else
render 'new'
end
2015-09-08 13:25:54 +00:00
end
2015-09-08 19:07:00 +00:00
private
2015-09-09 09:56:13 +00:00
def set_params
t = params.require(:transaction)
.permit(:debtor, :creditor, :amount, :message)
t.update {
debtor: User.find_by(name: t[:debtor]) || User.zeus,
creditor: User.find_by(name: t[:creditor]) || User.zeus
}
2015-09-08 19:07:00 +00:00
end
2015-09-08 13:25:54 +00:00
end