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

View File

@ -0,0 +1,2 @@
module MeasurementsHelper
end

View File

@ -0,0 +1 @@
<h2>MeasurementsController#create</h2>

View File

@ -0,0 +1 @@
<h2>MeasurementsController#destroy</h2>

View File

@ -0,0 +1 @@
<h2>MeasurementsController#index</h2>

View File

@ -0,0 +1,8 @@
require File.expand_path('../../test_helper', __FILE__)
class MeasurementsControllerTest < ActionController::TestCase
# Replace this with your real tests.
def test_truth
assert true
end
end