You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feat(register): add password complexity and hints (#68)
* add specific component to test in template
* adapt password form fields name
use include_asset, add noscript
fix password tests
fix lint
fix unit test
dupplicate PasswordCreationDoubleInput to use custom names and labels
fix lint
add exception in knip for external components
rename component to PasswordDoubleInput
update html forceShowNewPasswordInvalid": false
* update autocomplete field
* deactivate english dictionnary
fix lint
update translation
* update translations
---------
Co-authored-by: mcalinghee <[email protected]>
Copy file name to clipboardExpand all lines: frontend/src/gql/gql.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ type Documents = {
49
49
"\n fragment UserEmailList_user on User {\n hasPassword\n }\n": typeoftypes.UserEmailList_UserFragmentDoc,
50
50
"\n fragment UserEmailList_siteConfig on SiteConfig {\n emailChangeAllowed\n passwordLoginEnabled\n }\n": typeoftypes.UserEmailList_SiteConfigFragmentDoc,
51
51
"\n fragment BrowserSessionsOverview_user on User {\n id\n\n browserSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n }\n": typeoftypes.BrowserSessionsOverview_UserFragmentDoc,
"\n fragment RecoverPassword_userRecoveryTicket on UserRecoveryTicket {\n username\n email\n }\n": typeoftypes.RecoverPassword_UserRecoveryTicketFragmentDoc,
"\n fragment RecoverPassword_userRecoveryTicket on UserRecoveryTicket {\n username\n email\n }\n": types.RecoverPassword_UserRecoveryTicketFragmentDoc,
@@ -265,6 +265,10 @@ export function graphql(source: "\n fragment UserEmailList_siteConfig on SiteCo
265
265
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
266
266
*/
267
267
exportfunctiongraphql(source: "\n fragment BrowserSessionsOverview_user on User {\n id\n\n browserSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n }\n"): typeofimport('./graphql').BrowserSessionsOverview_UserFragmentDoc;
268
+
/**
269
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
0 commit comments