Files
grecia/app/controllers/budget/budgets_controller.rb
2016-07-20 14:06:27 +02:00

10 lines
156 B
Ruby

class Budget
class BudgetsController < ApplicationController
load_and_authorize_resource
def index
@budgets = Budget.all
end
end
end