Files
ackify-ce/docs/integrations/google-doc/exemple/appscript/appsscript.json
Benjamin 5e74921ee7 feat: admin dashboard document request signatures
- New, clearer dashboard showing the status of each document
- The administrator can create a list of expected signatures for a given document.
- The administrator can manage the list of users who must confirm that they have read the document
2025-10-06 23:34:01 +02:00

43 lines
1.2 KiB
JSON

{
"timeZone": "Europe/Paris",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"oauthScopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/script.container.ui",
"https://www.googleapis.com/auth/script.external_request"
],
"urlFetchWhitelist": [
"https://sign.neodtx.com/"
],
"addOns": {
"common": {
"name": "Signature & Certificat",
"logoUrl": "https://lh3.googleusercontent.com/-CeJhs3m4l3w/aLwUFVYqUNI/AAAAAAAAABg/qWFdtmoAp9469WfnKIF5-ujRwJj2j7ViACNcBGAsYHQ/s400/icon_128x128.png",
"useLocaleFromApp": true,
"homepageTrigger": {
"runFunction": "showSignatures"
},
"openLinkUrlPrefixes": [
"https://"
],
"universalActions": [
{
"label": "Vérifier document",
"runFunction": "checkDocument"
}
]
},
"docs": {
"homepageTrigger": {
"runFunction": "showSignatures"
},
"onFileScopeGrantedTrigger": {
"runFunction": "onDocsFileScopeGranted"
}
}
}
}