Files
grecia/app/controllers/admin/poll/polls_controller.rb
2016-09-23 09:13:02 +02:00

16 lines
165 B
Ruby

class Admin::Poll::PollsController < Admin::BaseController
load_and_authorize_resource
def index
end
def show
end
def new
end
def edit
end
end