command: rails generate redmine_plugin_controller body_tracking measurements index create destroy
12 lines
117 B
Ruby
12 lines
117 B
Ruby
class MeasurementsController < ApplicationController
|
|
|
|
def index
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|