docs: add redirect of the moved postgis section
In055921ea, we missed redirecting the old link to the new one. Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com> (cherry picked from commitab43ee1fbb)
This commit is contained in:
committed by
Steve Chavez
parent
a2d76b01b7
commit
15b83ff4da
@@ -471,3 +471,20 @@ You can use other comparative filters and also all the `PostgreSQL special date/
|
|||||||
"due_date": "2022-02-27T06:00:00-05:00"
|
"due_date": "2022-02-27T06:00:00-05:00"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
let hash = window.location.hash;
|
||||||
|
|
||||||
|
const redirects = {
|
||||||
|
// PostGIS
|
||||||
|
'#postgis': '../integrations/postgis.html#postgis',
|
||||||
|
};
|
||||||
|
|
||||||
|
let willRedirectTo = redirects[hash];
|
||||||
|
|
||||||
|
if (willRedirectTo) {
|
||||||
|
window.location.href = willRedirectTo;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user