Add scaffold for a controller & view

This commit is contained in:
Alex Sherman 2020-12-09 16:50:53 +05:00
parent de37732a56
commit ee2601b8de
8 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,9 @@
class Registrar
class BulkRenewController < DeppController
def index; end
def new
authorize! :manage, :repp
end
end
end