Skip to content

Commit

Permalink
Remove no-index meta attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
scheb committed Mar 17, 2024
1 parent 31322f7 commit 5da118a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion web_app/views/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
@cache_page(DEFAULT_PAGE_CACHE_TIME, cache="default")
def result(request: HttpRequest) -> HttpResponse:
meta = PageMeta.create("Custom Analysis", "", url=reverse("legal"))
meta.extra_props = {"robots": "noindex"}
return render(request, "analyze.html", {"meta": meta})


Expand Down
1 change: 0 additions & 1 deletion web_app/views/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def about(request: HttpRequest) -> HttpResponse:
@cache_page(DEFAULT_PAGE_CACHE_TIME, cache="default")
def updates(request: HttpRequest) -> HttpResponse:
meta = PageMeta.create("Recent Updates", "Recent updates on Beer Analytics", url=reverse("updates"))
meta.extra_props = {"robots": "noindex"}
return render(request, "updates.html", {"meta": meta})


Expand Down

0 comments on commit 5da118a

Please sign in to comment.