diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2022-12-29 16:52:56 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-01-02 09:53:52 +0100 |
| commit | afa2e28205fe708334ad463b6d3b0e9960b945a6 (patch) | |
| tree | dd04d81ebdaca8ab8c38f37f5c221923e67cf7cf /tests/staticfiles_tests/project | |
| parent | 75500feecddcb27b6ab65c9057e7317024cef761 (diff) | |
Fixed #34235 -- Added ManifestFilesMixin.manifest_hash attribute.
This adds ManifestFilesMixin.manifest_hash attribute exposing a "hash"
of the full manifest. This allows applications to determine when their
static files have changed.
Diffstat (limited to 'tests/staticfiles_tests/project')
| -rw-r--r-- | tests/staticfiles_tests/project/documents/staticfiles_v1.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/documents/staticfiles_v1.json b/tests/staticfiles_tests/project/documents/staticfiles_v1.json new file mode 100644 index 0000000000..4f85945e3f --- /dev/null +++ b/tests/staticfiles_tests/project/documents/staticfiles_v1.json @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "paths": { + "dummy.txt": "dummy.txt" + } +} |
