Make sure some action pages don't get indexed

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-11-03 09:47:10 +01:00
parent 54116686c8
commit d89c0fc414
6 changed files with 7 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ import { IEvent } from "@/types/event.model";
metaInfo() {
return {
title: this.$t("Participation with account") as string,
meta: [{ name: "robots", content: "noindex" }],
};
},
})

View File

@@ -158,6 +158,7 @@ import { ApolloCache, FetchResult } from "@apollo/client/core";
metaInfo() {
return {
title: this.$t("Participation without account") as string,
meta: [{ name: "robots", content: "noindex" }],
};
},
})

View File

@@ -133,6 +133,7 @@ import RouteName from "../../router/name";
metaInfo() {
return {
title: this.$t("Unlogged participation") as string,
meta: [{ name: "robots", content: "noindex" }],
};
},
})