1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00

10 lines
202 B
JavaScript

{
//this will give a 401 error, but made 401 exceptions forward to 'users/sign_in'
onSignOut: function(){
Ext.Ajax.request({
url: '/users/sign_out',
method: 'DELETE'
});
}
}