internetee-registry/app/controllers/registrar/dashboard_controller.rb
2017-04-06 19:05:14 +03:00

13 lines
304 B
Ruby

class Registrar
class DashboardController < BaseController
authorize_resource class: false
def show
if can?(:show, :poll)
redirect_to registrar_poll_url and return
elsif can?(:show, Invoice)
redirect_to registrar_invoices_url and return
end
end
end
end