30 lines
548 B
Plaintext
Raw Permalink Normal View History

2020-06-30 12:49:37 +02:00
include::../description.adoc[]
include::../ask-yourself.adoc[]
include::../recommended.adoc[]
== Sensitive Code Example
Django endpoint declaration
2020-06-30 12:49:37 +02:00
----
from django.urls import path, re_path
def declare_views(views):
return [
path('', views['index']), # Sensitive
re_path(r'^about/[0-9]*/$', views['about']), # Sensitive
]
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]