File tree Expand file tree Collapse file tree 1 file changed +1
-47
lines changed Expand file tree Collapse file tree 1 file changed +1
-47
lines changed Original file line number Diff line number Diff line change @@ -531,50 +531,6 @@ const questionLoginWithEndpoint = [
531
531
questionsLogin[3]
532
532
]
533
533
534
- const questionsRegister = [
535
- {
536
- type: "input",
537
- name: "name",
538
- message: "Enter your name",
539
- validate(value) {
540
- if (!value) {
541
- return "Please enter your name";
542
- }
543
- return true;
544
- },
545
- },
546
- {
547
- type: "input",
548
- name: "email",
549
- message: "Enter your email",
550
- validate(value) {
551
- if (!value) {
552
- return "Please enter your email";
553
- }
554
- return true;
555
- },
556
- },
557
- {
558
- type: "password",
559
- name: "password",
560
- message: "Enter your password",
561
- mask: "*",
562
- validate(value) {
563
- if (!value) {
564
- return "Please enter your password";
565
- }
566
- return true;
567
- },
568
- },
569
- ];
570
-
571
- const questionsRegisterWithEndpoint = [
572
- questionGetEndpoint[0],
573
- questionsRegister[0],
574
- questionsRegister[1],
575
- questionsRegister[2]
576
- ]
577
-
578
534
const questionsLogout = [
579
535
{
580
536
type: "checkbox",
@@ -844,7 +800,5 @@ module.exports = {
844
800
questionsListFactors,
845
801
questionsMfaChallenge,
846
802
questionGetEndpoint,
847
- questionLoginWithEndpoint,
848
- questionsRegister,
849
- questionsRegisterWithEndpoint
803
+ questionLoginWithEndpoint
850
804
};
You can’t perform that action at this time.
0 commit comments