rake routes
it should list all of the routes out and you should be able to see something like destroy_user_session
or destroy_session
on the left
main_app
from https://github.com/thredded/thredded#reference-your-paths-so-that-thredded-can-find-them for the destroy_user_session_path
call
.order(case_insensitive.column_for_order(:asc))
and not .order(case_insensitive.column_for_order => :asc)
-- do :asc and :desc influence column choice?
.order(case_insensitive.column_for_order.asc)