The end of the logout endpoint code in lib/casserver/server.rb, there's the following if block:
if@gateway && @serviceredirect@service,303elsif@continue_urlrender@template_engine,:logoutelserender@template_engine,:loginend
The middle condition attempts to render a view that doesn't exist. Is this intentional? Are users expected to write a custom logout view? If not, would it make sense to redirect to @continue_url instead?
The end of the logout endpoint code in
lib/casserver/server.rb, there's the followingifblock:The middle condition attempts to render a view that doesn't exist. Is this intentional? Are users expected to write a custom logout view? If not, would it make sense to redirect to
@continue_urlinstead?