@@ -28,6 +28,7 @@ SigningIn.args = {
28
28
...SignedOut . args ,
29
29
isSigningIn : true ,
30
30
authMethods : {
31
+ convert_to_oidc_enabled : true ,
31
32
password : { enabled : true } ,
32
33
github : { enabled : true } ,
33
34
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
@@ -55,6 +56,7 @@ export const WithGithub = Template.bind({})
55
56
WithGithub . args = {
56
57
...SignedOut . args ,
57
58
authMethods : {
59
+ convert_to_oidc_enabled : true ,
58
60
password : { enabled : true } ,
59
61
github : { enabled : true } ,
60
62
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
@@ -65,6 +67,7 @@ export const WithOIDC = Template.bind({})
65
67
WithOIDC . args = {
66
68
...SignedOut . args ,
67
69
authMethods : {
70
+ convert_to_oidc_enabled : true ,
68
71
password : { enabled : true } ,
69
72
github : { enabled : false } ,
70
73
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
@@ -75,6 +78,7 @@ export const WithOIDCWithoutPassword = Template.bind({})
75
78
WithOIDCWithoutPassword . args = {
76
79
...SignedOut . args ,
77
80
authMethods : {
81
+ convert_to_oidc_enabled : true ,
78
82
password : { enabled : false } ,
79
83
github : { enabled : false } ,
80
84
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
@@ -85,6 +89,7 @@ export const WithoutAny = Template.bind({})
85
89
WithoutAny . args = {
86
90
...SignedOut . args ,
87
91
authMethods : {
92
+ convert_to_oidc_enabled : true ,
88
93
password : { enabled : false } ,
89
94
github : { enabled : false } ,
90
95
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
@@ -95,6 +100,7 @@ export const WithGithubAndOIDC = Template.bind({})
95
100
WithGithubAndOIDC . args = {
96
101
...SignedOut . args ,
97
102
authMethods : {
103
+ convert_to_oidc_enabled : true ,
98
104
password : { enabled : true } ,
99
105
github : { enabled : true } ,
100
106
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
0 commit comments