Class: Account::SessionsController

Inherits:
BaseController show all
Defined in:
app/controllers/account/sessions_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

caches_page_with_cache_marker, #raise_not_found!

Instance Method Details

#profileObject



14
15
16
17
18
19
# File 'app/controllers/account/sessions_controller.rb', line 14

def profile
  respond_to do |format|
    format.json { render }
    format.all  { redirect to:  }
  end
end

#showObject



7
8
9
10
11
12
# File 'app/controllers/account/sessions_controller.rb', line 7

def show
  respond_to do |format|
    format.json { render }
    format.all  { redirect to:  }
  end
end