mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
17 lines
380 B
JavaScript
17 lines
380 B
JavaScript
// 用户状态 - 编辑
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
return request(
|
|
`/api/social/user/status/edit`,
|
|
{
|
|
content: JSON.stringify({
|
|
type: query.type,
|
|
iconUrl: query.iconUrl,
|
|
content: query.content,
|
|
actionUrl: query.actionUrl,
|
|
}),
|
|
},
|
|
createOption(query),
|
|
)
|
|
}
|