mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
11 lines
280 B
Ruby
11 lines
280 B
Ruby
class Registrar::DashboardController < RegistrarController
|
|
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
|