13 lines
401 B
Ruby
13 lines
401 B
Ruby
class Legislation::QuestionsController < Legislation::BaseController
|
|
load_and_authorize_resource :process
|
|
load_and_authorize_resource :question, through: :process
|
|
|
|
has_orders %w{most_voted newest oldest}, only: :show
|
|
|
|
def show
|
|
@commentable = @question
|
|
@comment_tree = CommentTree.new(@commentable, params[:page], @current_order)
|
|
set_comment_flags(@comment_tree.comments)
|
|
end
|
|
end
|