Skip to content

Commit 0ce9df5

Browse files
authored
Merge branch 'main' into 7e8d1-google-fonts
2 parents d370c13 + 2a3aad6 commit 0ce9df5

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

app/Http/Middleware/ImpersonationMiddleware.php

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ class ImpersonationMiddleware
5858

5959
'user.current',
6060
'local.temp',
61+
'vapor.signed-storage-url',
62+
'upload-file'
6163
];
6264

6365
/**

client/data/forms/integrations.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"is_pro": false,
4444
"is_external": true,
4545
"is_editable": false,
46-
"url": "https://zapier.com/developer/public-invite/208997/0d5f5584d1dc082fb28a6a8e5a1cc3f2/"
46+
"url": "https://zapier.com/apps/opnform/integrations"
4747
},
4848
"google_sheets": {
4949
"name": "Google Sheets",
Loading

integrations/zapier/authentication.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ module.exports = {
1515
type: 'string',
1616
},
1717
],
18-
connectionLabel: '{{bundle.inputData.name}} {{bundle.inputData.email}}',
18+
connectionLabel: '{{bundle.inputData.email}}',
1919
customConfig: {},
2020
};

integrations/zapier/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "opnform-test-1",
3-
"version": "1.0.1",
4-
"description": "opnform-test-1",
2+
"name": "opnform",
3+
"version": "1.0.2",
4+
"description": "OpnForm is an open-source form builder for creating and managing forms, enabling seamless data collection and automation.",
55
"main": "index.js",
66
"scripts": {
77
"test": "jest --testTimeout 10000"

resources/data/forms/integrations.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"is_pro": false,
4444
"is_external": true,
4545
"is_editable": false,
46-
"url": "https://zapier.com/developer/public-invite/208997/0d5f5584d1dc082fb28a6a8e5a1cc3f2/"
46+
"url": "https://zapier.com/apps/opnform/integrations"
4747
},
4848
"google_sheets": {
4949
"name": "Google Sheets",

routes/api.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,11 @@
333333
Route::post(
334334
'/vapor/signed-storage-url',
335335
[\App\Http\Controllers\Content\SignedStorageUrlController::class, 'store']
336-
)->middleware([]);
336+
)->name('vapor.signed-storage-url');
337337
Route::post(
338338
'/upload-file',
339339
[\App\Http\Controllers\Content\FileUploadController::class, 'upload']
340-
)->middleware([]);
340+
)->name('upload-file');
341341

342342
Route::get('local/temp/{path}', function (Request $request, string $path) {
343343
if (!$request->hasValidSignature()) {

0 commit comments

Comments
 (0)