more basic framework
This commit is contained in:
parent
15f23469d9
commit
b4c0bfd8fa
20 changed files with 1084 additions and 448 deletions
4
app/controllers/application.rb
Normal file
4
app/controllers/application.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Filters added to this controller will be run for all controllers in the application.
|
||||
# Likewise, all the methods added will be available for all controllers.
|
||||
class ApplicationController < ActionController::Base
|
||||
end
|
2
app/controllers/trace_controller.rb
Normal file
2
app/controllers/trace_controller.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
class TraceController < ApplicationController
|
||||
end
|
2
app/controllers/trace_points_controller.rb
Normal file
2
app/controllers/trace_points_controller.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
class TracePointsController < ApplicationController
|
||||
end
|
6
app/controllers/user_controller.rb
Normal file
6
app/controllers/user_controller.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
class UserController < ApplicationController
|
||||
|
||||
def new
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue