10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
|
#include authorise.js
|
||
|
#include verify.js
|
||
|
|
||
|
(() => {
|
||
|
if(location.pathname === '/oauth2/authorise' || location.pathname === '/oauth2/authorize')
|
||
|
MszOAuth2Authorise();
|
||
|
if(location.pathname === '/oauth2/verify')
|
||
|
MszOAuth2Verify();
|
||
|
})();
|