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

16 lines
162 B
Ruby

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