commands: rails generate redmine_plugin_model body_tracking quantity rails generate redmine_plugin_controller body_tracking quantities index create destroy
12 lines
115 B
Ruby
12 lines
115 B
Ruby
class QuantitiesController < ApplicationController
|
|
|
|
def index
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|