mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:42:59 +00:00
rm logs
This commit is contained in:
@@ -11,8 +11,6 @@ export default async function Page() {
|
|||||||
server
|
server
|
||||||
);
|
);
|
||||||
|
|
||||||
console.log(legal);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center space-y-4">
|
<div className="flex flex-col items-center space-y-4">
|
||||||
<h1>Register</h1>
|
<h1>Register</h1>
|
||||||
|
|||||||
@@ -121,7 +121,6 @@ export function listSessions(
|
|||||||
): Promise<any | undefined> {
|
): Promise<any | undefined> {
|
||||||
const sessionService = session.getSession(server);
|
const sessionService = session.getSession(server);
|
||||||
const query = { offset: 0, limit: 100, asc: true };
|
const query = { offset: 0, limit: 100, asc: true };
|
||||||
console.log(ids);
|
|
||||||
const queries = [{ idsQuery: { ids } }];
|
const queries = [{ idsQuery: { ids } }];
|
||||||
return sessionService.listSessions({ queries: queries }, {});
|
return sessionService.listSessions({ queries: queries }, {});
|
||||||
}
|
}
|
||||||
@@ -151,7 +150,6 @@ export function addHumanUser(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
.then((resp: AddHumanUserResponse) => {
|
.then((resp: AddHumanUserResponse) => {
|
||||||
console.log("added user", resp.userId);
|
|
||||||
return resp.userId;
|
return resp.userId;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ export default function UsernameForm() {
|
|||||||
|
|
||||||
function submitUsernameAndContinue(value: Inputs): Promise<boolean | void> {
|
function submitUsernameAndContinue(value: Inputs): Promise<boolean | void> {
|
||||||
return submitUsername(value).then(({ factors }) => {
|
return submitUsername(value).then(({ factors }) => {
|
||||||
console.log(factors);
|
|
||||||
return router.push(
|
return router.push(
|
||||||
`/password?` +
|
`/password?` +
|
||||||
new URLSearchParams({ loginName: `${factors.user.loginName}` })
|
new URLSearchParams({ loginName: `${factors.user.loginName}` })
|
||||||
|
|||||||
@@ -85,7 +85,6 @@ export default function VerifyEmailForm({ userId, code, submit }: Props) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function submitCodeAndContinue(value: Inputs): Promise<boolean | void> {
|
function submitCodeAndContinue(value: Inputs): Promise<boolean | void> {
|
||||||
console.log(value);
|
|
||||||
return submitCode(value).then((resp: any) => {
|
return submitCode(value).then((resp: any) => {
|
||||||
return router.push(`/username`);
|
return router.push(`/username`);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user