Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 58 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"express": "^4.21.1",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.7",
"js-yaml": "^3.13.1",
"js-yaml": "^4.1.1",
"keychain": "^1.4.0",
"keytar": "^7.9.0",
"lodash": "^4.17.13",
Expand Down
2 changes: 1 addition & 1 deletion src/box-command.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
let outputData = formatObjectKeys(obj);

// Other objects are formatted as YAML for human-readable output
let yamlString = yaml.safeDump(outputData, {
let yamlString = yaml.dump(outputData, {
indent: 4,
noRefs: true,
});
Expand Down Expand Up @@ -303,8 +303,8 @@
// Set up the command for bulk run
DEBUG.init('Preparing for bulk input');
this.isBulk = true;
originalArgs = _.cloneDeep(this.constructor.args);

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 306 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone
originalFlags = _.cloneDeep(this.constructor.flags);

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone

Check warning on line 307 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Prefer `structuredClone(…)` over `_.cloneDeep(…)` to create a deep clone
this.disableRequiredArgsAndFlags();
}

Expand Down Expand Up @@ -615,7 +615,7 @@
let parsedData;
try {
let jsonFile = JSON.parse(fileContents);
parsedData = jsonFile.hasOwnProperty('entries')

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Do not access Object.prototype method 'hasOwnProperty' from target object

Check warning on line 618 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Do not access Object.prototype method 'hasOwnProperty' from target object
? jsonFile.entries
: jsonFile;
} catch (error) {
Expand Down Expand Up @@ -651,8 +651,8 @@
// Arrays can be one of two things: an array of values for a single key,
// or an array of grouped flags/args as objects
// First, check if everything in the array is either all object or all non-object
let types = value.reduce(

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 654 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability
(acc, t) => acc.concat(typeof t),

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 655 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Prefer the spread operator over `Array#concat(…)`
[]
);
if (
Expand Down Expand Up @@ -1190,7 +1190,7 @@
// which happens when a command that outputs a collection gets run in bulk
formattedOutputData = (await Promise.all(
content.map((o) => this._formatOutputObject(o))
)).flat();

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Do not access a member directly from an await expression

Check warning on line 1193 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Do not access a member directly from an await expression
DEBUG.output(
'Formatted %d output entries for display',
content.length
Expand Down Expand Up @@ -1643,7 +1643,7 @@
if (!fields) {
return output;
}
fields = REQUIRED_FIELDS.concat(

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1646 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Prefer the spread operator over `Array#concat(…)`
fields.split(',').filter((f) => !REQUIRED_FIELDS.includes(f))
);
DEBUG.output('Filtering output with fields: %O', fields);
Expand Down Expand Up @@ -1717,7 +1717,7 @@
) {
let subKeys = this.getNestedKeys(object[key]);
subKeys = subKeys.map((x) => `${key}.${x}`);
keys = keys.concat(subKeys);

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

Prefer the spread operator over `Array#concat(…)`

Check warning on line 1720 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

Prefer the spread operator over `Array#concat(…)`
} else {
keys.push(key);
}
Expand Down Expand Up @@ -1751,7 +1751,7 @@
);

// Successively apply the offsets to the current time
newDate = argPairs.reduce(

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on ubuntu-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 18 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 22 on windows-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability

Check warning on line 1754 in src/box-command.js

View workflow job for this annotation

GitHub Actions / Node 20 on macos-latest

`Array#reduce()` is not allowed. Prefer other types of loop for readability
(d, args) => offsetDate(d, ...args),
new Date()
);
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/output/files_share_yaml.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Type: file
ID: '1234567890'
Shared Link:
URL: 'https://blosserdemoaccount.box.com/s/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p'
URL: https://blosserdemoaccount.box.com/s/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p
Download URL: >-
https://blosserdemoaccount.box.com/shared/static/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p.png
Vanity URL: 'https://app.box.com/v/my-custom-name-123'
Vanity URL: https://app.box.com/v/my-custom-name-123
Effective Access: open
Is Password Enabled: true
Unshared At: null
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/files_upload_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Type: file
ID: '1234567890'
File Version:
Type: file_version
ID: 098765432109
ID: '098765432109'
SHA1: 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
Sequence ID: '0'
ETag: '0'
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/files_versions_upload_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Type: file
ID: '1234567890'
File Version:
Type: file_version
ID: 098765432109
ID: '098765432109'
SHA1: 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
Sequence ID: '0'
ETag: '0'
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/output/folders_share_yaml.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Type: folder
ID: '0'
Shared Link:
URL: 'https://blosserdemoaccount.box.com/s/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p'
URL: https://blosserdemoaccount.box.com/s/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p
Download URL: >-
https://blosserdemoaccount.box.com/shared/static/7mcmdlavtye5o5i0ue8xmtwh2sx5bv8p.png
Vanity URL: 'https://app.box.com/v/my-custom-name-123'
Vanity URL: https://app.box.com/v/my-custom-name-123
Effective Access: open
Is Password Enabled: true
Unshared At: null
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/users_create_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Status: active
Job Title: ''
Phone: '1234567890'
Address: ''
Avatar URL: 'https://app.box.com/api/avatar/large/deprecated'
Avatar URL: https://app.box.com/api/avatar/large/deprecated
2 changes: 1 addition & 1 deletion test/fixtures/output/users_get_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Status: active
Job Title: ''
Phone: 555-555-5555
Address: ''
Avatar URL: 'https://app.box.com/api/avatar/large/deprecated'
Avatar URL: https://app.box.com/api/avatar/large/deprecated
2 changes: 1 addition & 1 deletion test/fixtures/output/users_invite_user_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Status: active
Job Title: ''
Phone: 555-555-5555
Address: ''
Avatar URL: 'https://app.box.com/api/avatar/large/deprecated'
Avatar URL: https://app.box.com/api/avatar/large/deprecated
2 changes: 1 addition & 1 deletion test/fixtures/output/users_update_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Status: active
Job Title: CEO
Phone: (555) 555-5555
Address: ''
Avatar URL: 'https://app.box.com/api/avatar/large/deprecated'
Avatar URL: https://app.box.com/api/avatar/large/deprecated
2 changes: 1 addition & 1 deletion test/fixtures/output/web_links_create_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ID: '6743065'
Sequence ID: '0'
ETag: '0'
Name: Box Website!
URL: 'https://www.box.com'
URL: https://www.box.com
Created By:
Type: user
ID: '10523870'
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/web_links_get_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ID: '6742981'
Sequence ID: '0'
ETag: '0'
Name: Box Website
URL: 'https://www.box.com'
URL: https://www.box.com
Created By:
Type: user
ID: '10523870'
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/web_links_move_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ID: '6742981'
Sequence ID: '2'
ETag: '2'
Name: Box Marketing Web Page
URL: 'https://www.box.com'
URL: https://www.box.com
Created By:
Type: user
ID: '10523870'
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/web_links_update_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ID: '6742981'
Sequence ID: '2'
ETag: '2'
Name: Box Marketing Web Page
URL: 'https://www.box.com'
URL: https://www.box.com
Created By:
Type: user
ID: '10523870'
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/output/webhooks_create_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Created By:
Name: John Q. Developer
Login: [email protected]
Created At: '2016-05-09T17:41:27-07:00'
Address: 'https://dev.name/actions/file_changed'
Address: https://dev.name/actions/file_changed
Triggers:
- FILE.DOWNLOADED
- FILE.UPLOADED
2 changes: 1 addition & 1 deletion test/fixtures/output/webhooks_get_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ Created By:
Name: John Q. Developer
Login: [email protected]
Created At: '2016-05-04T18:51:45-07:00'
Address: 'https://example.net/actions/file_changed'
Address: https://example.net/actions/file_changed
Triggers:
- FILE.PREVIEWED
2 changes: 1 addition & 1 deletion test/fixtures/output/webhooks_update_yaml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Created By:
Name: John Q. Developer
Login: [email protected]
Created At: '2016-05-09T17:41:27-07:00'
Address: 'https://dev.name/actions/file_changed'
Address: https://dev.name/actions/file_changed
Triggers:
- FILE.DOWNLOADED
- FILE.UPLOADED
Loading