function returnExpiredUserCodeError()

in Modules/common.js [147:154]


function returnExpiredUserCodeError(callback) {
    var response = {
        statusCode: 400,
        headers: {"content-type": "text/html", "cache-control": "no-store"},
        body: "<H1>Sorry, code has expired</H1>"
    };
    callback(null, response);
}