Browse Source

Merge pull request #523 from loftwah/master

@author <Dean Lofts> <dean@deanlofts.xyz>
pull/524/head
o1lab 3 years ago committed by GitHub
parent
commit
c0e92f4478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      .all-contributorsrc
  2. 6
      packages/nocodb/src/plugins/smtp/index.ts

9
.all-contributorsrc

@ -306,6 +306,15 @@
"contributions": [
"code"
]
},
{
"login": "loftwah",
"name": "loftwah",
"avatar_url": "https://avatars.githubusercontent.com/u/19922556?v=4",
"profile": "https://github.com/loftwah",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,

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

@ -3,6 +3,8 @@ import {XcPluginConfig} from "nc-plugin";
import SMTPPlugin from "./SMTPPlugin";
// @author <dean@deanlofts.xyz>
const config: XcPluginConfig ={
builder: SMTPPlugin,
title: 'SMTP',
@ -43,13 +45,13 @@ const config: XcPluginConfig ={
label: 'Username',
placeholder: 'Username',
type: XcType.SingleLineText,
required: true
required: false
}, {
key: 'password',
label: 'Password',
placeholder: 'Password',
type: XcType.Password,
required: true
required: false
},],
actions: [{
label: 'Test',

Loading…
Cancel
Save