We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A. CAS Server Port configuration I suggest the following change at line 151
change: this.cas_port = parsed_cas_url.protocol === 'http:' ? 80 : 443;
this.cas_port = parsed_cas_url.protocol === 'http:' ? 80 : 443;
to:
this.cas_port = (parsed_cas_url.port!=null)?parsed_cas_url.port:(parsed_cas_url.protocol === 'http:' ? 80 : 443);
B. REST API I suggest to enhance this package to support also the REST API. How can we push code on github and npm?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A. CAS Server Port configuration
I suggest the following change at line 151
change:
this.cas_port = parsed_cas_url.protocol === 'http:' ? 80 : 443;
to:
this.cas_port = (parsed_cas_url.port!=null)?parsed_cas_url.port:(parsed_cas_url.protocol === 'http:' ? 80 : 443);
B. REST API
I suggest to enhance this package to support also the REST API. How can we push code on github and npm?
The text was updated successfully, but these errors were encountered: