Files
grecia/app/controllers/budgets/groups_controller.rb
2017-05-06 04:57:06 +02:00

13 lines
348 B
Ruby

module Budgets
class GroupsController < ApplicationController
load_and_authorize_resource :budget
load_and_authorize_resource :group, class: "Budget::Group"
before_action :set_default_budget_filter, only: :show
has_filters %w{not_unfeasible feasible unfeasible unselected selected}, only: [:show]
def show
end
end
end