Dashboard controllers have been refactored

Proposal dashboard related controllers have been refactored inside its
own namespace.
This commit is contained in:
Juan Salvador Pérez García
2018-06-25 07:56:13 +02:00
parent 303584a06e
commit bafdd697b8
17 changed files with 53 additions and 42 deletions

View File

@@ -0,0 +1,9 @@
class Admin::ProposalDashboard::BaseController < Admin::BaseController
helper_method :namespace
private
def namespace
'admin'
end
end