Files
nairobi/app/controllers/budgets_controller.rb
2018-01-22 09:59:09 +01:00

24 lines
592 B
Ruby

class BudgetsController < ApplicationController
include FeatureFlags
include BudgetsHelper
include Search
feature_flag :budgets
load_and_authorize_resource
before_action :set_default_budget_filter, only: :show
has_filters %w{not_unfeasible feasible unfeasible unselected selected}, only: :show
respond_to :html, :js
def show
raise ActionController::RoutingError, 'Not Found' unless budget_published?(@budget)
end
def index
@budgets = @budgets.order(:created_at)
@budget = current_budget
@budgets_coordinates = current_budget_map_locations
end
end