Use singular controller

This commit is contained in:
Artur Beljajev 2018-06-19 20:43:23 +03:00
parent 756836001c
commit 28416a3375
4 changed files with 10 additions and 11 deletions

View file

@ -0,0 +1,8 @@
module Admin
class DashboardController < BaseController
authorize_resource class: false
def show
end
end
end