Skip to content

Commit c1be07b

Browse files
committed
no zapier dependency
1 parent b7a97d3 commit c1be07b

File tree

3 files changed

+3
-105
lines changed

3 files changed

+3
-105
lines changed

public/_headers

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
Strict-Transport-Security: max-age=31536000; includeSubDomains
1111
Referrer-Policy: strict-origin-when-cross-origin
1212
Access-Control-Allow-Methods: GET
13-
Content-Security-Policy: base-uri 'self'; font-src 'self' data:; form-action 'self'; frame-ancestors 'self'; img-src 'self' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com https://*.caldn.net https://zapier-images.imgix.net data:; object-src 'none'; script-src-attr 'self'; script-src 'self' 'unsafe-inline' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com https://cdn.zapier.com; style-src 'self' 'unsafe-inline' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com https://cdn.jsdelivr.net https://cdn.zapier.com; frame-src 'self'; upgrade-insecure-requests;
13+
Content-Security-Policy: base-uri 'self'; font-src 'self' data:; form-action 'self'; frame-ancestors 'self'; img-src 'self' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com https://*.caldn.net data:; object-src 'none'; script-src-attr 'self'; script-src 'self' 'unsafe-inline' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com; style-src 'self' 'unsafe-inline' https://*.add-to-calendar-pro.com https://add-to-calendar-pro.com https://cdn.jsdelivr.net; frame-src 'self'; upgrade-insecure-requests;
1414
Permissions-Policy: geolocation=(),midi=(),microphone=(),camera=(),gyroscope=(*),encrypted-media=(*),payment=()

src/automation-integration/zapier.md

Lines changed: 1 addition & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
---
22
outline: [2,3]
3-
head:
4-
- - script
5-
- type: module
6-
src: https://cdn.zapier.com/packages/partner-sdk/v0/zapier-elements/zapier-elements.esm.js
7-
- - link
8-
- rel: stylesheet
9-
href: https://cdn.zapier.com/packages/partner-sdk/v0/zapier-elements/zapier-elements.css
103
---
114

125
# Automate Flows with Zapier
@@ -132,48 +125,4 @@ Simply create a new event at Add to Calendar PRO via our Zapier app whenever a n
132125

133126
## Explore the possibilities!
134127

135-
<br />
136-
137-
<div style="position:relative;z-index:0;">
138-
<zapier-workflow
139-
client-id="v08oVVLLq6aY9241XuXc6tsG9UTjdvrZF5ffcAQx"
140-
:theme="theme"
141-
intro-copy-display="hide"
142-
manage-zaps-display="hide"
143-
guess-zap-display="show"
144-
app-search-bar-display="show"
145-
zap-create-from-scratch-display="show"
146-
id="zapier-workflow"
147-
></zapier-workflow>
148-
</div>
149-
150-
<script setup>
151-
import { ref, onMounted, onUnmounted } from 'vue';
152-
153-
const theme = ref('light');
154-
let observer = null;
155-
156-
onMounted(() => {
157-
if (typeof document !== 'undefined') {
158-
theme.value = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
159-
}
160-
observer = new MutationObserver((mutationsList) => {
161-
for (const mutation of mutationsList) {
162-
if (mutation.type === 'attributes' && mutation.attributeName === 'class') {
163-
if (typeof document !== 'undefined') {
164-
theme.value = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
165-
}
166-
}
167-
}
168-
});
169-
if (typeof document !== 'undefined') {
170-
observer.observe(document.documentElement, { attributes: true });
171-
}
172-
});
173-
174-
onUnmounted(() => {
175-
if (observer) {
176-
observer.disconnect();
177-
}
178-
});
179-
</script>
128+
[See examples and templates rigth within the app ❯](https://app.add-to-calendar-pro.com/use-zapier)

src/de/automation-integration/zapier.md

Lines changed: 1 addition & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
---
22
outline: [2,3]
3-
head:
4-
- - script
5-
- type: module
6-
src: https://cdn.zapier.com/packages/partner-sdk/v0/zapier-elements/zapier-elements.esm.js
7-
- - link
8-
- rel: stylesheet
9-
href: https://cdn.zapier.com/packages/partner-sdk/v0/zapier-elements/zapier-elements.css
103
---
114

125
# Flows mit Zapier automatisieren
@@ -132,48 +125,4 @@ Erstelle einfach ein neues Event bei Add to Calendar PRO über unsere Zapier-App
132125

133126
## Entdecke die Möglichkeiten!
134127

135-
<br />
136-
137-
<div style="position:relative;z-index:0;">
138-
<zapier-workflow
139-
client-id="v08oVVLLq6aY9241XuXc6tsG9UTjdvrZF5ffcAQx"
140-
theme="light"
141-
intro-copy-display="hide"
142-
manage-zaps-display="hide"
143-
guess-zap-display="show"
144-
app-search-bar-display="show"
145-
zap-create-from-scratch-display="show"
146-
id="zapier-workflow"
147-
></zapier-workflow>
148-
</div>
149-
150-
<script setup>
151-
import { ref, onMounted, onUnmounted } from 'vue';
152-
153-
const theme = ref('light');
154-
let observer = null;
155-
156-
onMounted(() => {
157-
if (typeof document !== 'undefined') {
158-
theme.value = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
159-
}
160-
observer = new MutationObserver((mutationsList) => {
161-
for (const mutation of mutationsList) {
162-
if (mutation.type === 'attributes' && mutation.attributeName === 'class') {
163-
if (typeof document !== 'undefined') {
164-
theme.value = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
165-
}
166-
}
167-
}
168-
});
169-
if (typeof document !== 'undefined') {
170-
observer.observe(document.documentElement, { attributes: true });
171-
}
172-
});
173-
174-
onUnmounted(() => {
175-
if (observer) {
176-
observer.disconnect();
177-
}
178-
});
179-
</script>
128+
[Beispiele und Vorlagen direkt in der App erkunden ❯](https://app.add-to-calendar-pro.com/de/use-zapier)

0 commit comments

Comments
 (0)