Is it possible to have two courses on the same WeBWorK server, one using LMS integration and the other not?
LTI is set up following the instructions in localOverrides.conf. For the course where I don't want LMS integration, I added the following to course.conf:
$authen{user_module} = [
# { '*' => 'WeBWorK::Authen::LTIAdvantage' }, # first try LTI 1.3
# { '*' => 'WeBWorK::Authen::LTIAdvanced' }, # next try LTI 1.1
{ '*' => 'WeBWorK::Authen::Basic_TheLastOption' } # fallback authorization method
];
This worked for allowing password-based login in this course. However, when students try to access a problem set, they still get: "You must log into this set using your Learning Management System".
What is the proper way to use LMS integration only for some courses, while leaving some others completely independent of any LMS?