예제 #1
0
파일: views.py 프로젝트: matcher/glacier
def logout(request):
	#get authentication mgr
	mgr=AuthMgr(request)

	#log user out
	mgr.logout()
	
	#return authentication
	return HttpResponse( AIResponse().serialize() )