forked from enviPath/enviPy
feat: add mockup for static pages
This commit is contained in:
@ -176,4 +176,12 @@ urlpatterns = [
|
||||
re_path(r"^depict$", v.depict, name="depict"),
|
||||
# OAuth Stuff
|
||||
path("o/userinfo/", v.userinfo, name="oauth_userinfo"),
|
||||
# Static Pages
|
||||
re_path(r"^terms$", v.terms_of_use, name="terms_of_use"),
|
||||
re_path(r"^privacy$", v.privacy_policy, name="privacy_policy"),
|
||||
re_path(r"^cookie-policy$", v.cookie_policy, name="cookie_policy"),
|
||||
re_path(r"^about$", v.about_us, name="about_us"),
|
||||
re_path(r"^contact$", v.contact_support, name="contact_support"),
|
||||
re_path(r"^jobs$", v.jobs, name="jobs"),
|
||||
re_path(r"^cite$", v.cite, name="cite"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user