Web: Common: Added api method.

This commit is contained in:
Tatiana Lopaeva 2021-07-01 13:18:43 +03:00
parent e08630f740
commit 426fce6140

View File

@ -315,3 +315,11 @@ export function validateTfaCode(code) {
data, data,
}); });
} }
export function getCommonThirdPartyList() {
const options = {
method: "get",
url: "/files/thirdparty/common",
};
return request(options);
}