1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Tue, 25 Mar 2025 16:29:08 +0200
Subject: docs: Drop any linking to external grahpics
Not really needed and can potentially become as security breach.
Forwarded: Not-Needed
---
docs/index.md | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/docs/index.md b/docs/index.md
index 0a656b7..36166a0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,10 +1,5 @@
# flask-cors
-[](https://img.shields.io/github/v/release/corydolphin/flask-cors)
-[](https://github.com/corydolphin/flask-cors/actions/workflows/main.yml?query=branch%3Amain)
-[](https://img.shields.io/github/commit-activity/m/corydolphin/flask-cors)
-[](https://img.shields.io/github/license/corydolphin/flask-cors)
-
A Flask extension for handling Cross Origin Resource Sharing (CORS),
making cross-origin AJAX possible.
@@ -63,4 +58,4 @@ To allow cookies or authenticated requests to be made cross origins, simply set
@app.route("/")
def helloWorld():
return "Hello, %s" % session['username']
-```
\ No newline at end of file
+```
|