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>
330 lines
7.7 KiB
TypeScript
330 lines
7.7 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const userGroupOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
action: 'Create a user group',
|
|
},
|
|
{
|
|
name: 'Disable',
|
|
value: 'disable',
|
|
action: 'Disable a user group',
|
|
},
|
|
{
|
|
name: 'Enable',
|
|
value: 'enable',
|
|
action: 'Enable a user group',
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
action: 'Get many user groups',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
action: 'Update a user group',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
export const userGroupFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* userGroup:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Name',
|
|
name: 'name',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['create'],
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'A name for the User Group. Must be unique among User Groups.',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'Options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Channel Names or IDs',
|
|
name: 'channelIds',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
default: [],
|
|
description:
|
|
'A comma-separated string of encoded channel IDs for which the User Group uses as a default. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A short description of the User Group',
|
|
},
|
|
{
|
|
displayName: 'Handle',
|
|
name: 'handle',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A mention handle. Must be unique among channels, users and User Groups.',
|
|
},
|
|
{
|
|
displayName: 'Include Count',
|
|
name: 'include_count',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the number of users in each User Group',
|
|
},
|
|
],
|
|
},
|
|
/* ----------------------------------------------------------------------- */
|
|
/* userGroup:disable */
|
|
/* ----------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User Group ID',
|
|
name: 'userGroupId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['disable'],
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The encoded ID of the User Group to update',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
operation: ['disable'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include Count',
|
|
name: 'include_count',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the number of users in each User Group',
|
|
},
|
|
],
|
|
},
|
|
/* ----------------------------------------------------------------------- */
|
|
/* userGroup:enable */
|
|
/* ----------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User Group ID',
|
|
name: 'userGroupId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['enable'],
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The encoded ID of the User Group to update',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'option',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
operation: ['enable'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include Count',
|
|
name: 'include_count',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the number of users in each User Group',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* userGroup:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getAll'],
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getAll'],
|
|
resource: ['userGroup'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 100,
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include Count',
|
|
name: 'include_count',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the number of users in each User Group',
|
|
},
|
|
{
|
|
displayName: 'Include Disabled',
|
|
name: 'include_disabled',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include disabled User Groups',
|
|
},
|
|
{
|
|
displayName: 'Include Users',
|
|
name: 'include_users',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the list of users for each User Group',
|
|
},
|
|
],
|
|
},
|
|
/* ----------------------------------------------------------------------- */
|
|
/* userGroup:update */
|
|
/* ----------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User Group ID',
|
|
name: 'userGroupId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['update'],
|
|
resource: ['userGroup'],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The encoded ID of the User Group to update',
|
|
},
|
|
{
|
|
displayName: 'Update Fields',
|
|
name: 'updateFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['userGroup'],
|
|
operation: ['update'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Channel Names or IDs',
|
|
name: 'channels',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
default: [],
|
|
description:
|
|
'A comma-separated string of encoded channel IDs for which the User Group uses as a default. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A short description of the User Group',
|
|
},
|
|
{
|
|
displayName: 'Handle',
|
|
name: 'handle',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A mention handle. Must be unique among channels, users and User Groups.',
|
|
},
|
|
{
|
|
displayName: 'Include Count',
|
|
name: 'include_count',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to include the number of users in each User Group',
|
|
},
|
|
{
|
|
displayName: 'Name',
|
|
name: 'name',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A name for the User Group. Must be unique among User Groups.',
|
|
},
|
|
],
|
|
},
|
|
];
|