about summary refs log tree commit diff
path: root/lib/rook_web/controllers/app_controller.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rook_web/controllers/app_controller.ex')
-rw-r--r--lib/rook_web/controllers/app_controller.ex10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/rook_web/controllers/app_controller.ex b/lib/rook_web/controllers/app_controller.ex
index 4c36fda..9e36f3c 100644
--- a/lib/rook_web/controllers/app_controller.ex
+++ b/lib/rook_web/controllers/app_controller.ex
@@ -1,8 +1,6 @@
 defmodule RookWeb.AppController do
   use RookWeb, :controller
 
-  plug :add_token
-
   def share(conn, _params) do
     render(conn, "share.html")
   end
@@ -10,12 +8,4 @@ defmodule RookWeb.AppController do
   def request(conn, _params) do
     render(conn, "request.html")
   end
-
-  defp add_token(conn, _params) do
-    if conn.assigns[:token] do
-      conn
-    else
-      assign(conn, :token, Rook.Utils.Token.token())
-    end
-  end
 end