mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Add User.logout to client
This commit is contained in:
parent
255ebbc048
commit
2e96a387e9
3 changed files with 17 additions and 1 deletions
|
@ -49,6 +49,7 @@ module.exports.loginUser = (userObject, failure=genericFailure, nextURL=null) ->
|
|||
jqxhr.fail(failure)
|
||||
|
||||
module.exports.logoutUser = ->
|
||||
# TODO: Refactor to use User.logout
|
||||
FB?.logout?()
|
||||
callback = ->
|
||||
location = _.result(currentView, 'logoutRedirectURL')
|
||||
|
|
|
@ -194,6 +194,9 @@ module.exports = class User extends CocoModel
|
|||
isOnPremiumServer: ->
|
||||
me.get('country') in ['china', 'brazil']
|
||||
|
||||
|
||||
# Function meant for "me"
|
||||
|
||||
spy: (user, options={}) ->
|
||||
user = user.id or user # User instance, user ID, email or username
|
||||
options.url = '/auth/spy'
|
||||
|
@ -207,6 +210,18 @@ module.exports = class User extends CocoModel
|
|||
options.type = 'POST'
|
||||
@fetch(options)
|
||||
|
||||
logout: (options={}) ->
|
||||
options.type = 'POST'
|
||||
options.url = '/auth/logout'
|
||||
FB?.logout?()
|
||||
options.success ?= ->
|
||||
location = _.result(currentView, 'logoutRedirectURL')
|
||||
if location
|
||||
window.location = location
|
||||
else
|
||||
window.location.reload()
|
||||
@fetch(options)
|
||||
|
||||
fetchGPlusUser: (gplusID, options={}) ->
|
||||
options.data ?= {}
|
||||
options.data.gplusID = gplusID
|
||||
|
|
|
@ -81,7 +81,7 @@ module.exports.setup = (app) ->
|
|||
|
||||
app.post('/auth/logout', (req, res) ->
|
||||
req.logout()
|
||||
res.end()
|
||||
res.send({})
|
||||
)
|
||||
|
||||
app.post('/auth/reset', (req, res) ->
|
||||
|
|
Loading…
Add table
Reference in a new issue