Skip to content
Snippets Groups Projects
Commit 57543e6b authored by syuilo's avatar syuilo
Browse files

fix(client): ログイントークンの再生成が出来ない

Fix #9822
parent a1b8cd15
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ function regenerateToken() { ...@@ -91,7 +91,7 @@ function regenerateToken() {
type: 'password', type: 'password',
}).then(({ canceled, result: password }) => { }).then(({ canceled, result: password }) => {
if (canceled) return; if (canceled) return;
os.api('i/regenerate_token', { os.api('i/regenerate-token', {
password: password, password: password,
}); });
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment