14 lines
188 B
Ruby
14 lines
188 B
Ruby
class BudgetsController < ApplicationController
|
|
|
|
load_and_authorize_resource
|
|
respond_to :html, :js
|
|
|
|
def show
|
|
end
|
|
|
|
def index
|
|
@budgets = @budgets.order(:created_at)
|
|
end
|
|
|
|
end
|