1
0

Created ingredients controller

command: rails generate redmine_plugin_controller body_tracking
ingredients index create destroy
This commit is contained in:
cryptogopher
2019-09-13 14:03:39 +02:00
parent 7062652d0d
commit c916e7fd3c
10 changed files with 80 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
class IngredientsController < ApplicationController
def index
end
def create
end
def destroy
end
end