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