summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-06 19:44:57 -0400
committerDavid Gay <david@davidgay.org>2021-04-06 19:44:57 -0400
commitd24f83582d83cb4d296ab98923f4d7062611265d (patch)
tree64dfca78f705d5ab3164d13d54a7a73cfac6d6ac
parent504513d1b47a8dfc9dccfca7b7113bbfdfbaa21c (diff)
Some empty controllers
-rw-r--r--app/controllers/games/ptu/pokemon_controller.rb4
-rw-r--r--app/controllers/games/ptu_controller.rb2
-rw-r--r--app/controllers/games_controller.rb2
3 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/games/ptu/pokemon_controller.rb b/app/controllers/games/ptu/pokemon_controller.rb
new file mode 100644
index 0000000..8290a73
--- /dev/null
+++ b/app/controllers/games/ptu/pokemon_controller.rb
@@ -0,0 +1,4 @@
+class Games::Ptu::PokemonController < ApplicationController
+ def show
+ end
+end
diff --git a/app/controllers/games/ptu_controller.rb b/app/controllers/games/ptu_controller.rb
new file mode 100644
index 0000000..21b3a39
--- /dev/null
+++ b/app/controllers/games/ptu_controller.rb
@@ -0,0 +1,2 @@
+class Games::PtuController < ApplicationController
+end
diff --git a/app/controllers/games_controller.rb b/app/controllers/games_controller.rb
new file mode 100644
index 0000000..2d05967
--- /dev/null
+++ b/app/controllers/games_controller.rb
@@ -0,0 +1,2 @@
+class GamesController < ApplicationController
+end