fossasia/loklak_webclient

View on GitHub
iframely/plugins/domains/google.com/accounts.google.com.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    re: [
        /https?:\/\/accounts\.google\.com\/ServiceLogin/i,
        /https?:\/\/www\.google\.com\/accounts\/ServiceLogin/i,
        /https?:\/\/www\.google\.com\/(?:[\/a-z0-9-.]+)?\/ServiceLogin/i
    ],

    getLink: function(urlMatch, cb) {

        cb ({
            responseStatusCode: 403
        });
    }
};