Files
nairobi/app/controllers/budgets_controller.rb
2016-09-07 15:13:39 +02:00

17 lines
236 B
Ruby

class BudgetsController < ApplicationController
include FeatureFlags
feature_flag :budgets
load_and_authorize_resource
respond_to :html, :js
def show
end
def index
@budgets = @budgets.order(:created_at)
end
end