You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-08 21:13:14 +02:00
18 lines
346 B
JavaScript
Vendored
18 lines
346 B
JavaScript
Vendored
module.exports = function(context) {
|
|
return {
|
|
name: 'course-protection-plugin',
|
|
injectHtmlTags() {
|
|
return {
|
|
headTags: [
|
|
{
|
|
tagName: 'meta',
|
|
attributes: {
|
|
name: 'robots',
|
|
content: 'noindex, nofollow'
|
|
},
|
|
},
|
|
],
|
|
};
|
|
},
|
|
};
|
|
}; |