mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
4df69428f1
* 🔥 Remove useless tooltips * Slack change additional fields to Options in node * 🥅 Add error handeling for out of Scope request * ♻️ Refactor channel visibility * ♻️ refactor user ressource * Update user profile * 🔥 remove JSON parameter * 🔥 remove attchmant json and block json * 🎨 refactors message post * 🎨 refactor ts property into timestamps * 🎨 change action name for messages * ✨ add new operation to message ressouce * ✨ add search backend logic + channel RLC * 🎨 improve timestamp description and plaecholder * 🎨 change timestamp disaplay name * ✨ add RLC for channels * ✨ add versioning * 🐛 Fix imports for versioning * ✨ Add RLC for users when sending messages * ✨ RLC for user presence * ✨ Add json builder for slack blocks * 🐛 Fix option in search query * Add loadoption for search in channels * Fix indentation issue * ✨ Add more scopes to Oauth2 * 🐛 Fix lint issue * 🐛 oauth fix * ✨ Merge user and user profile * ✨ Improve reactions and star resource * ⚡️Merges ephemeral operation into one * ⚡️Merge image and emoji in profile picture * 🐛Fix bug for replying to messages * ⚡️Add username type to User Rlc * 🐛 Fix typo * 🎨 Improves tooltip and naming for ephemeral messages * 🎨 Improve display name and description * ⚡️Add the ability to delete within username channel * 🎨 Add informations on how to use the emojis and add doc * 🎨 Fix typos and improve display names * ✨ Improve FE validation for timestamp * 🎨 Change block description * 🚨 Fix linting * 🚨 More lint fixes * 🐛 Fix timestamps bug * 🐛 Fix timestamp not showing up * 🐛 More small fixes * 🐛 Fix logic error * Add searchable to slack rlc channels and users * Fix lint rules * ⚡️Message Search -> fix limit request using qs count * ⚡️Message Search -> sort by relevance use qs score * Fix messages by username rlc * 🐛 fix messages search all operation * Add error when using username with ephemeral message * 🎨 fix linting errors * 🎨 send message ephemeral error message improvement --------- Co-authored-by: Marcus <marcus@n8n.io>
298 lines
6.8 KiB
TypeScript
298 lines
6.8 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const userOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'info',
|
|
description: 'Get information about a user',
|
|
action: 'Get information about a user',
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Get a list of many users',
|
|
action: 'Get many users',
|
|
},
|
|
{
|
|
name: "Get User's Status",
|
|
value: 'getPresence',
|
|
description: 'Get online status of a user',
|
|
action: "Get a user's presence status",
|
|
},
|
|
{
|
|
name: "Update User's Profile",
|
|
value: 'updateProfile',
|
|
description: "Update a user's profile",
|
|
action: "Update a user's profile",
|
|
},
|
|
],
|
|
default: 'info',
|
|
},
|
|
];
|
|
|
|
export const userFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:info */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'resourceLocator',
|
|
default: { mode: 'list', value: '' },
|
|
placeholder: 'Select a user...',
|
|
description: 'The ID of the user to get information about',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['info'],
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
modes: [
|
|
{
|
|
displayName: 'From List',
|
|
name: 'list',
|
|
type: 'list',
|
|
placeholder: 'Select a user...',
|
|
typeOptions: {
|
|
searchListMethod: 'getUsers',
|
|
searchable: true,
|
|
},
|
|
},
|
|
{
|
|
displayName: 'By ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
validation: [
|
|
{
|
|
type: 'regex',
|
|
properties: {
|
|
regex: '[a-zA-Z0-9]{2,}',
|
|
errorMessage: 'Not a valid Slack User ID',
|
|
},
|
|
},
|
|
],
|
|
placeholder: 'U123AB45JGM',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['getAll'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 100,
|
|
},
|
|
default: 50,
|
|
description: 'Max number of results to return',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:getPresence */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'resourceLocator',
|
|
default: { mode: 'list', value: '' },
|
|
placeholder: 'Select a user...',
|
|
description: 'The ID of the user to get the online status of',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getPresence'],
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
modes: [
|
|
{
|
|
displayName: 'From List',
|
|
name: 'list',
|
|
type: 'list',
|
|
placeholder: 'Select a user...',
|
|
typeOptions: {
|
|
searchListMethod: 'getUsers',
|
|
searchable: true,
|
|
},
|
|
},
|
|
{
|
|
displayName: 'By ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
validation: [
|
|
{
|
|
type: 'regex',
|
|
properties: {
|
|
regex: '[a-zA-Z0-9]{2,}',
|
|
errorMessage: 'Not a valid Slack User ID',
|
|
},
|
|
},
|
|
],
|
|
placeholder: 'U123AB45JGM',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:update user profile */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['updateProfile'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Custom Fields',
|
|
name: 'customFieldUi',
|
|
placeholder: 'Add Custom Fields',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
name: 'customFieldValues',
|
|
displayName: 'Custom Field',
|
|
values: [
|
|
{
|
|
displayName: 'Field Name or ID',
|
|
name: 'id',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTeamFields',
|
|
},
|
|
default: '',
|
|
description:
|
|
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value of the field to set',
|
|
},
|
|
{
|
|
displayName: 'Alt',
|
|
name: 'alt',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
type: 'string',
|
|
placeholder: 'name@email.com',
|
|
default: '',
|
|
description: 'This field can only be changed by admins for users on paid teams',
|
|
},
|
|
{
|
|
displayName: 'First Name',
|
|
name: 'first_name',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Last Name',
|
|
name: 'last_name',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Set Status',
|
|
name: 'status',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
placeholder: 'Set Status',
|
|
options: [
|
|
{
|
|
displayName: 'Set Status',
|
|
name: 'set_status',
|
|
values: [
|
|
{
|
|
displayName: 'Status Emoji',
|
|
name: 'status_emoji',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'Is a string referencing an emoji enabled for the Slack team, such as :mountain_railway:',
|
|
},
|
|
{
|
|
displayName: 'Status Expiration',
|
|
name: 'status_expiration',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description:
|
|
'The number of minutes to wait until this status expires and is cleared. Optional.',
|
|
},
|
|
{
|
|
displayName: 'Status Text',
|
|
name: 'status_text',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Allows up to 100 characters, though we strongly encourage brevity',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'User ID',
|
|
name: 'user',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'ID of user to change. This argument may only be specified by team admins on paid teams.',
|
|
},
|
|
],
|
|
},
|
|
];
|