Browse Source

refactor: plugin names

pull/9314/head
Pranav C 3 months ago
parent
commit
512e086062
  1. 4
      packages/nocodb/src/plugins/backblaze/index.ts
  2. 4
      packages/nocodb/src/plugins/linode/index.ts
  3. 4
      packages/nocodb/src/plugins/ovhCloud/index.ts
  4. 4
      packages/nocodb/src/plugins/r2/index.ts
  5. 4
      packages/nocodb/src/plugins/scaleway/index.ts
  6. 19
      packages/nocodb/src/plugins/smtp/index.ts
  7. 4
      packages/nocodb/src/plugins/upcloud/index.ts
  8. 4
      packages/nocodb/src/plugins/vultr/index.ts

4
packages/nocodb/src/plugins/backblaze/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: BackblazePlugin,
title: 'Backblaze B2',
version: '0.0.3',
title: 'Backblaze',
version: '0.0.4',
logo: 'plugins/backblaze.jpeg',
tags: 'Storage',
description:

4
packages/nocodb/src/plugins/linode/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: LinodeObjectStoragePlugin,
title: 'Linode Object Storage',
version: '0.0.2',
title: 'Linode',
version: '0.0.3',
logo: 'plugins/linode.svg',
tags: 'Storage',
description:

4
packages/nocodb/src/plugins/ovhCloud/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: OvhCloud,
title: 'OvhCloud Object Storage',
version: '0.0.2',
title: 'Ovh',
version: '0.0.3',
logo: 'plugins/ovhCloud.png',
tags: 'Storage',
description:

4
packages/nocodb/src/plugins/r2/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: R2Plugin,
title: 'Cloudflare R2 Storage',
version: '0.0.1',
title: 'Cloudflare R2',
version: '0.0.2',
logo: 'plugins/r2.png',
description:
'Cloudflare R2 is an S3-compatible, zero egress-fee, globally distributed object storage.',

4
packages/nocodb/src/plugins/scaleway/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: ScalewayObjectStoragePlugin,
title: 'Scaleway Object Storage',
version: '0.0.2',
title: 'Scaleway',
version: '0.0.3',
logo: 'plugins/scaleway.png',
tags: 'Storage',
description:

19
packages/nocodb/src/plugins/smtp/index.ts

@ -22,12 +22,15 @@ const config: XcPluginConfig = {
placeholder: 'admin@run.com',
type: XcType.SingleLineText,
required: true,
help_text:
'Enter the email address you want to appear as the sender of the emails sent through this SMTP configuration',
},
{
key: 'host',
label: 'SMTP Server',
placeholder: 'smtp.run.com',
help_text: 'Enter outgoing mail server address (SMTP). If you do not have this information available, contact your email service provider',
help_text:
'Enter outgoing mail server address (SMTP). If you do not have this information available, contact your email service provider',
type: XcType.SingleLineText,
required: true,
},
@ -37,6 +40,8 @@ const config: XcPluginConfig = {
placeholder: 'your-domain.com',
type: XcType.SingleLineText,
required: true,
help_text:
"Specify the domain name that will be used in the 'From' address (e.g., yourdomain.com). This should match the domain of the From Address.",
},
{
key: 'port',
@ -44,6 +49,8 @@ const config: XcPluginConfig = {
placeholder: 'Port',
type: XcType.SingleLineText,
required: true,
help_text:
'Enter the port number used by the SMTP server (e.g., 587 for TLS, 465 for SSL, or 25 for non-secure connections).',
},
{
key: 'secure',
@ -51,6 +58,8 @@ const config: XcPluginConfig = {
placeholder: 'Secure',
type: XcType.Checkbox,
required: false,
help_text:
'Enable this on if your SMTP server requires a secure connection (SSL/TLS).',
},
{
key: 'ignoreTLS',
@ -58,6 +67,8 @@ const config: XcPluginConfig = {
placeholder: 'Ignore TLS',
type: XcType.Checkbox,
required: false,
help_text:
'Enable this if you want to bypass any TLS errors that may occur during the connection. Only use this if necessary, as it may compromise security.',
},
{
key: 'rejectUnauthorized',
@ -65,6 +76,8 @@ const config: XcPluginConfig = {
placeholder: 'Reject Unauthorized',
type: XcType.Checkbox,
required: false,
help_text:
'Enable this on to reject emails that fail authentication checks, ensuring only authorized emails are sent.',
},
{
key: 'username',
@ -72,6 +85,8 @@ const config: XcPluginConfig = {
placeholder: 'Username',
type: XcType.SingleLineText,
required: false,
help_text:
'Enter the username required to authenticate with the SMTP server. This is usually your email address.',
},
{
key: 'password',
@ -79,6 +94,8 @@ const config: XcPluginConfig = {
placeholder: 'Password',
type: XcType.Password,
required: false,
help_text:
'Enter the password associated with the SMTP server username. Click the eye icon to view the password as you type',
},
],
actions: [

4
packages/nocodb/src/plugins/upcloud/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: UpCloudPlugin,
title: 'UpCloud Object Storage',
version: '0.0.2',
title: 'UpCloud',
version: '0.0.3',
logo: 'plugins/upcloud.png',
description:
'The perfect home for your data. Thanks to the S3-compatible programmable interface,\n' +

4
packages/nocodb/src/plugins/vultr/index.ts

@ -4,8 +4,8 @@ import type { XcPluginConfig } from '~/types/nc-plugin';
const config: XcPluginConfig = {
builder: VultrPlugin,
title: 'Vultr Object Storage',
version: '0.0.3',
title: 'Vultr',
version: '0.0.4',
logo: 'plugins/vultr.png',
description:
'Using Vultr Object Storage can give flexibility and cloud storage that allows applications greater flexibility and access worldwide.',

Loading…
Cancel
Save