1
0

Added MeasurementsController

command:
rails generate redmine_plugin_controller body_tracking measurements
index create destroy
This commit is contained in:
cryptogopher
2019-11-16 14:18:34 +01:00
parent f2fa3db7f7
commit b7b0f7634e
6 changed files with 24 additions and 0 deletions

View File

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