mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(nodes-base): Apply lint rule node-param-display-name-not-first-position (#4073)
* 👕 Enable rule * 👕 Apply rule
This commit is contained in:
@@ -377,18 +377,18 @@ export class Spotify implements INodeType {
|
||||
description: 'Get a playlist by URI or ID',
|
||||
action: 'Get a playlist',
|
||||
},
|
||||
{
|
||||
name: "Get the User's Playlists",
|
||||
value: 'getUserPlaylists',
|
||||
description: "Get a user's playlists",
|
||||
action: "Get a user's playlists",
|
||||
},
|
||||
{
|
||||
name: 'Get Tracks',
|
||||
value: 'getTracks',
|
||||
description: "Get a playlist's tracks by URI or ID",
|
||||
action: "Get a playlist's tracks by URI or ID",
|
||||
},
|
||||
{
|
||||
name: `Get the User's Playlists`,
|
||||
value: 'getUserPlaylists',
|
||||
description: "Get a user's playlists",
|
||||
action: "Get a user's playlists",
|
||||
},
|
||||
{
|
||||
name: 'Remove an Item',
|
||||
value: 'delete',
|
||||
@@ -396,7 +396,7 @@ export class Spotify implements INodeType {
|
||||
action: 'Remove an item from a playlist',
|
||||
},
|
||||
{
|
||||
name: `Search`,
|
||||
name: 'Search',
|
||||
value: 'search',
|
||||
description: 'Search playlists by keyword',
|
||||
action: 'Search playlists by keyword',
|
||||
@@ -1322,4 +1322,4 @@ export class Spotify implements INodeType {
|
||||
|
||||
return this.prepareOutputData(returnData);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user