command: rails generate redmine_plugin_controller body_tracking ingredients index create destroy
12 lines
116 B
Ruby
12 lines
116 B
Ruby
class IngredientsController < ApplicationController
|
|
|
|
def index
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|