Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: user login request should remove its own prefix option #1701

Merged
merged 1 commit into from
Apr 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions web/src/pages/User/components/LoginMethodPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,9 @@ const LoginMethodPassword: UserModule.LoginMethod = {
submit: async ({ username, password }) => {
if (username !== '' && password !== '') {
try {
const result = await request('/apisix/admin/user/login', {
const result = await request('/user/login', {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to update related test cases?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

request will handle this :)

method: 'POST',
requestType: 'json',
prefix: '',
liuxiran marked this conversation as resolved.
Show resolved Hide resolved
data: {
username,
password,
Expand Down