15 lines
401 B
JavaScript
15 lines
401 B
JavaScript
import service from '@/utils/request'
|
|
// @Tags jwt
|
|
// @Summary jwt加入黑名单
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"拉黑成功"}"
|
|
// @Router /jwt/jsonInBlacklist [post]
|
|
export const jsonInBlacklist = () => {
|
|
return service({
|
|
url: '/jwt/jsonInBlacklist',
|
|
method: 'post'
|
|
})
|
|
}
|