diff options
Diffstat (limited to 'app/controllers/resources_controller.rb')
-rw-r--r-- | app/controllers/resources_controller.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/controllers/resources_controller.rb b/app/controllers/resources_controller.rb new file mode 100644 index 0000000..1253b5d --- /dev/null +++ b/app/controllers/resources_controller.rb @@ -0,0 +1,13 @@ +class ResourcesController < ApplicationController + def index + end + + def new + end + + def edit + end + + def delete + end +end |