22 lines
377 B
Ruby
22 lines
377 B
Ruby
module Budgets
|
|
class ResultsController < ApplicationController
|
|
|
|
load_and_authorize_resource :budget
|
|
|
|
def show
|
|
authorize! :read_results, @budget
|
|
@result = load_result
|
|
end
|
|
|
|
private
|
|
|
|
def load_result
|
|
Budget::Result.new(@budget, heading)
|
|
end
|
|
|
|
def heading
|
|
@budget.headings.find(params[:heading_id])
|
|
end
|
|
|
|
end
|
|
end |