14 lines
185 B
Ruby
14 lines
185 B
Ruby
class TransactionsController < ApplicationController
|
|
|
|
def index
|
|
@transactions = Transaction.all
|
|
end
|
|
|
|
def new
|
|
@transaction = Transaction.new
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
end
|