fossasia/loklak_webclient

View on GitHub
iframely/plugins/links/oembed-reader.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    getLink: function(oembed, whitelistRecord, __readabilityEnabled) {

        if (oembed.type === "link" && oembed.html && whitelistRecord.isAllowed && whitelistRecord.isAllowed('oembed.link', "reader")) {
            
            return {
                html: oembed.html,
                type: CONFIG.T.safe_html,
                rel: [CONFIG.R.reader, CONFIG.R.inline]
            };
        }
    }
};