mirror of
https://github.com/heartcombo/devise.git
synced 2026-02-18 10:31:38 -05:00
8 lines
138 B
Ruby
8 lines
138 B
Ruby
class UsersController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
|
|
def index
|
|
user_session[:cart] = "Cart"
|
|
end
|
|
end
|