forked from github/dataease
Merge pull request #9998 from dataease/pr@dev-v2@perf_platform_qr
perf(X-Pack): 第三方平台扫码登录接口删除secret字段
This commit is contained in:
commit
f8d3a6910e
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
||||
Subproject commit 5063149be6ae339601938ba9aba1c4e62074ed21
|
||||
Subproject commit dac92153509c5e1f4b7eb3b8418bd4ce320726c5
|
@ -19,6 +19,10 @@ public interface DingtalkApi {
|
||||
@GetMapping("/info")
|
||||
DingtalkInfoVO info();
|
||||
|
||||
@Operation(summary = "查询钉钉二维码信息")
|
||||
@GetMapping("/qrinfo")
|
||||
DingtalkInfoVO qrinfo();
|
||||
|
||||
@Operation(summary = "保存")
|
||||
@PostMapping("/create")
|
||||
void save(@RequestBody DingtalkSettingCreator creator);
|
||||
|
@ -20,6 +20,10 @@ public interface LarkApi {
|
||||
@GetMapping("/info")
|
||||
LarkInfoVO info();
|
||||
|
||||
@Operation(summary = "查询飞书二维码信息")
|
||||
@GetMapping("/qrinfo")
|
||||
LarkInfoVO qrinfo();
|
||||
|
||||
@Operation(summary = "保存")
|
||||
@PostMapping("/create")
|
||||
void save(@RequestBody LarkSettingCreator creator);
|
||||
|
@ -19,6 +19,10 @@ public interface LarksuiteApi {
|
||||
@GetMapping("/info")
|
||||
LarkInfoVO info();
|
||||
|
||||
@Operation(summary = "查询国际飞书二维码信息")
|
||||
@GetMapping("/qrinfo")
|
||||
LarkInfoVO qrinfo();
|
||||
|
||||
@Operation(summary = "保存")
|
||||
@PostMapping("/create")
|
||||
void save(@RequestBody LarkSettingCreator creator);
|
||||
|
@ -19,6 +19,10 @@ public interface WecomApi {
|
||||
@GetMapping("/info")
|
||||
WecomInfoVO info();
|
||||
|
||||
@Operation(summary = "查询企微二维码信息")
|
||||
@GetMapping("/qrinfo")
|
||||
WecomInfoVO qrinfo();
|
||||
|
||||
@Operation(summary = "保存")
|
||||
@PostMapping("/create")
|
||||
void save(@RequestBody WecomCreator creator);
|
||||
|
@ -31,13 +31,13 @@ public class WhitelistUtils {
|
||||
"/doc.html",
|
||||
"/panel.html",
|
||||
"/mobile.html",
|
||||
"/lark/info",
|
||||
"/lark/qrinfo",
|
||||
"/lark/token",
|
||||
"/larksuite/info",
|
||||
"/larksuite/qrinfo",
|
||||
"/larksuite/token",
|
||||
"/dingtalk/info",
|
||||
"/dingtalk/qrinfo",
|
||||
"/dingtalk/token",
|
||||
"/wecom/info",
|
||||
"/wecom/qrinfo",
|
||||
"/wecom/token",
|
||||
"/sysParameter/requestTimeOut",
|
||||
"/setting/authentication/status",
|
||||
|
Loading…
Reference in New Issue
Block a user