Skip to content

Commit a4f7741

Browse files
authored
Merge pull request #5 from elRatto21/3-create-basic-controllers
create basic controllers
2 parents eb76c26 + 35b4033 commit a4f7741

15 files changed

+55
-0
lines changed

app/controllers/bike_controller.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class BikeController < ApplicationController
2+
end

app/controllers/part_controller.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class PartController < ApplicationController
2+
end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class ServiceController < ApplicationController
2+
end

app/controllers/team_controller.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class TeamController < ApplicationController
2+
end

app/controllers/user_controller.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class UserController < ApplicationController
2+
end

app/helpers/bike_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module BikeHelper
2+
end

app/helpers/part_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module PartHelper
2+
end

app/helpers/service_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ServiceHelper
2+
end

app/helpers/team_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module TeamHelper
2+
end

app/helpers/user_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module UserHelper
2+
end

0 commit comments

Comments
 (0)