Huge role refactoring/cleanup. Other commits will propably follow. Because some bugs will exist. Still important for longrun and also for auto docs/help/slideshow generation

This commit is contained in:
2025-07-08 23:43:13 +02:00
parent 6b87a049d4
commit 563d5fd528
1242 changed files with 2301 additions and 1355 deletions

View File

@@ -0,0 +1,12 @@
- name: Load iFrame handler JS template
set_fact:
iframe_code: "{{ lookup('template','iframe-handler.js.j2') }}"
- name: Collapse iFrame code into one-liner
set_fact:
iframe_code_one_liner: "{{ iframe_code | to_one_liner }}"
- name: Append iFrame CSP hash
set_fact:
applications: "{{ applications | append_csp_hash(application_id, iframe_code_one_liner) }}"
changed_when: false