Add required authorization to all pages
[cs356-p2-videostore.git] / app / controllers / customer_controller.rb
index 9aba977..1e560c0 100644 (file)
@@ -1,4 +1,8 @@
 class CustomerController < ApplicationController
+
+  # Make sure that the user has logged in before they can take any action
+  before_filter :authorize
+
   def index
     list
     render :action => 'list'