feat: add provider icons and menus (#1522)

* fix: add provider icons(email and captcha) and menus

* fix: add provider icons and menus
This commit is contained in:
LilithHC 2023-02-06 20:28:40 +08:00 committed by GitHub
parent fcc75dd3be
commit 943aa61869
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -141,6 +141,8 @@ class ProviderListPage extends BaseListPage {
{text: "SMS", value: "SMS"},
{text: "Storage", value: "Storage"},
{text: "SAML", value: "SAML"},
{text: "Captcha", value: "Captcha"},
{text: "Payment", value: "Payment"},
],
width: "110px",
sorter: true,
@ -159,6 +161,7 @@ class ProviderListPage extends BaseListPage {
{text: "Storage", value: "Storage", children: Setting.getProviderTypeOptions("Storage").map((o) => {return {text: o.id, value: o.name};})},
{text: "SAML", value: "SAML", children: Setting.getProviderTypeOptions("SAML").map((o) => {return {text: o.id, value: o.name};})},
{text: "Captcha", value: "Captcha", children: Setting.getProviderTypeOptions("Captcha").map((o) => {return {text: o.id, value: o.name};})},
{text: "Payment", value: "Payment", children: Setting.getProviderTypeOptions("Payment").map((o) => {return {text: o.id, value: o.name};})},
],
sorter: true,
render: (text, record, index) => {

View File

@ -114,7 +114,11 @@ export const OtherProviderInfo = {
},
Email: {
"Default": {
logo: `${StaticBaseUrl}/img/social_default.png`,
logo: `${StaticBaseUrl}/img/email_default.png`,
url: "",
},
"SUBMAIL": {
logo: `${StaticBaseUrl}/img/social_submail.png`,
url: "",
},
},
@ -174,7 +178,7 @@ export const OtherProviderInfo = {
},
Captcha: {
"Default": {
logo: `${StaticBaseUrl}/img/social_default.png`,
logo: `${StaticBaseUrl}/img/captcha_default.png`,
url: "https://pkg.go.dev/github.com/dchest/captcha",
},
"reCAPTCHA": {