[Backport] Add discover url to the sitemap
parent
50924e4410
commit
630a3e88aa
|
@ -27,6 +27,7 @@ class GenericSitemap(Sitemap):
|
|||
def items(self):
|
||||
return [
|
||||
{"url_key": "home", "changefreq": "monthly", "priority": 1},
|
||||
{"url_key": "discover", "changefreq": "daily", "priority": 1},
|
||||
{"url_key": "login", "changefreq": "monthly", "priority": 1},
|
||||
{"url_key": "register", "changefreq": "monthly", "priority": 1},
|
||||
{"url_key": "forgot-password", "changefreq": "monthly", "priority": 1}
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
urls = {
|
||||
"home": "/",
|
||||
"discover": "/discover",
|
||||
"login": "/login",
|
||||
"register": "/register",
|
||||
"forgot-password": "/forgot-password",
|
||||
|
|
Loading…
Reference in New Issue