9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
|
|
|
|
function testAuth(ctx) {
|
|
var subject = auth.getClaim(ctx, auth.CLAIM_SUBJECT);
|
|
|
|
if (subject !== "jdoe") {
|
|
throw new Error("subject: expected 'jdoe', got '"+subject+"'");
|
|
}
|
|
} |