tab/app/controllers/transactions_controller.rb
2015-09-08 15:25:54 +02:00

15 lines
185 B
Ruby

class TransactionsController < ApplicationController
def index
@transactions = Transaction.all
end
def new
@transaction = Transaction.new
end
def create
end
end