popcorn :: GithubLogout :: defaultinit
popcorn :: GithubLogout :: redirect_uri
The URL in your application where users will be sent after logout.popcorn :: GithubLogout :: redirect_uri=
The URL in your application where users will be sent after logout.popcorn $ GithubLogout :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class to create the specific class.
			popcorn :: GithubLogout :: defaultinit
popcorn :: Handler :: defaultinit
core :: Object :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodycore :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).popcorn :: GithubLogout :: redirect_uri
The URL in your application where users will be sent after logout.popcorn :: GithubLogout :: redirect_uri=
The URL in your application where users will be sent after logout.popcorn :: Handler :: validate_body
Validate body input withvalidator
			popcorn :: Handler :: validator
Validator used to check body inputpopcorn :: Handler :: validator=
Validator used to check body input
# Destroy user session and redirect to homepage.
class GithubLogout
	super Handler
	# The URL in your application where users will be sent after logout.
	#
	# If `null`, the root uri `/` will be used.
	var redirect_uri: nullable String is writable
	redef fun get(req, res) do
		var session = req.session
		if session != null then
			session.user = null
		end
		res.redirect redirect_uri or else "/"
	end
end
					lib/popcorn/pop_auth.nit:253,1--269,3