1
0

Created BodyTrackers controller

command: rails generate redmine_plugin_controller body_tracking
body_trackers index
This commit is contained in:
cryptogopher 2019-08-08 22:33:58 +02:00
parent 045943938d
commit 3e83693c28
4 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class BodyTrackersController < ApplicationController
def index
end
end

View File

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

View File

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

View File

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