web/admin: add button to create prompt on PromptStageForm

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-04-06 16:58:28 +02:00
parent e678e3553b
commit d5169504ea
4 changed files with 66 additions and 45 deletions

View File

@ -13,7 +13,7 @@ export const SIDEBAR_ITEMS: SidebarItem[] = [
new SidebarItem(t`Overview`, "/administration/overview"), new SidebarItem(t`Overview`, "/administration/overview"),
new SidebarItem(t`System Tasks`, "/administration/system-tasks"), new SidebarItem(t`System Tasks`, "/administration/system-tasks"),
).when((): Promise<boolean> => { ).when((): Promise<boolean> => {
return me().then(u => u.user.isSuperuser||false); return me().then(u => u.user.isSuperuser || false);
}), }),
new SidebarItem(t`Resources`).children( new SidebarItem(t`Resources`).children(
new SidebarItem(t`Applications`, "/core/applications").activeWhen( new SidebarItem(t`Applications`, "/core/applications").activeWhen(
@ -28,7 +28,7 @@ export const SIDEBAR_ITEMS: SidebarItem[] = [
new SidebarItem(t`Outposts`, "/outpost/outposts"), new SidebarItem(t`Outposts`, "/outpost/outposts"),
new SidebarItem(t`Outpost Service Connections`, "/outpost/service-connections"), new SidebarItem(t`Outpost Service Connections`, "/outpost/service-connections"),
).when((): Promise<boolean> => { ).when((): Promise<boolean> => {
return me().then(u => u.user.isSuperuser||false); return me().then(u => u.user.isSuperuser || false);
}), }),
new SidebarItem(t`Events`).children( new SidebarItem(t`Events`).children(
new SidebarItem(t`Logs`, "/events/log").activeWhen( new SidebarItem(t`Logs`, "/events/log").activeWhen(
@ -43,7 +43,7 @@ export const SIDEBAR_ITEMS: SidebarItem[] = [
new SidebarItem(t`Policies`, "/policy/policies"), new SidebarItem(t`Policies`, "/policy/policies"),
new SidebarItem(t`Property Mappings`, "/core/property-mappings"), new SidebarItem(t`Property Mappings`, "/core/property-mappings"),
).when((): Promise<boolean> => { ).when((): Promise<boolean> => {
return me().then(u => u.user.isSuperuser||false); return me().then(u => u.user.isSuperuser || false);
}), }),
new SidebarItem(t`Flows`).children( new SidebarItem(t`Flows`).children(
new SidebarItem(t`Flows`, "/flow/flows").activeWhen(`^/flow/flows/(?<slug>${SLUG_REGEX})$`), new SidebarItem(t`Flows`, "/flow/flows").activeWhen(`^/flow/flows/(?<slug>${SLUG_REGEX})$`),
@ -51,7 +51,7 @@ export const SIDEBAR_ITEMS: SidebarItem[] = [
new SidebarItem(t`Prompts`, "/flow/stages/prompts"), new SidebarItem(t`Prompts`, "/flow/stages/prompts"),
new SidebarItem(t`Invitations`, "/flow/stages/invitations"), new SidebarItem(t`Invitations`, "/flow/stages/invitations"),
).when((): Promise<boolean> => { ).when((): Promise<boolean> => {
return me().then(u => u.user.isSuperuser||false); return me().then(u => u.user.isSuperuser || false);
}), }),
new SidebarItem(t`Identity & Cryptography`).children( new SidebarItem(t`Identity & Cryptography`).children(
new SidebarItem(t`Users`, "/identity/users").activeWhen(`^/identity/users/(?<id>${ID_REGEX})$`), new SidebarItem(t`Users`, "/identity/users").activeWhen(`^/identity/users/(?<id>${ID_REGEX})$`),
@ -59,7 +59,7 @@ export const SIDEBAR_ITEMS: SidebarItem[] = [
new SidebarItem(t`Certificates`, "/crypto/certificates"), new SidebarItem(t`Certificates`, "/crypto/certificates"),
new SidebarItem(t`Tokens`, "/core/tokens"), new SidebarItem(t`Tokens`, "/core/tokens"),
).when((): Promise<boolean> => { ).when((): Promise<boolean> => {
return me().then(u => u.user.isSuperuser||false); return me().then(u => u.user.isSuperuser || false);
}), }),
]; ];

View File

@ -437,7 +437,7 @@ msgid "Change your password"
msgstr "Change your password" msgstr "Change your password"
#: src/pages/applications/ApplicationViewPage.ts:122 #: src/pages/applications/ApplicationViewPage.ts:122
#: src/pages/flows/FlowViewPage.ts:113 #: src/pages/flows/FlowViewPage.ts:114
#: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:147 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:147
#: src/pages/providers/proxy/ProxyProviderViewPage.ts:146 #: src/pages/providers/proxy/ProxyProviderViewPage.ts:146
#: src/pages/providers/saml/SAMLProviderViewPage.ts:140 #: src/pages/providers/saml/SAMLProviderViewPage.ts:140
@ -685,6 +685,8 @@ msgstr "Copy Key"
#: src/pages/stages/invitation/InvitationListPage.ts:85 #: src/pages/stages/invitation/InvitationListPage.ts:85
#: src/pages/stages/prompt/PromptListPage.ts:96 #: src/pages/stages/prompt/PromptListPage.ts:96
#: src/pages/stages/prompt/PromptListPage.ts:104 #: src/pages/stages/prompt/PromptListPage.ts:104
#: src/pages/stages/prompt/PromptStageForm.ts:87
#: src/pages/stages/prompt/PromptStageForm.ts:95
#: src/pages/user-settings/tokens/UserTokenList.ts:50 #: src/pages/user-settings/tokens/UserTokenList.ts:50
#: src/pages/user-settings/tokens/UserTokenList.ts:58 #: src/pages/user-settings/tokens/UserTokenList.ts:58
#: src/pages/users/UserListPage.ts:143 #: src/pages/users/UserListPage.ts:143
@ -741,6 +743,7 @@ msgid "Create Policy"
msgstr "Create Policy" msgstr "Create Policy"
#: src/pages/stages/prompt/PromptListPage.ts:99 #: src/pages/stages/prompt/PromptListPage.ts:99
#: src/pages/stages/prompt/PromptStageForm.ts:90
msgid "Create Prompt" msgid "Create Prompt"
msgstr "Create Prompt" msgstr "Create Prompt"
@ -1115,7 +1118,7 @@ msgid "Exception"
msgstr "Exception" msgstr "Exception"
#: src/pages/flows/FlowListPage.ts:98 #: src/pages/flows/FlowListPage.ts:98
#: src/pages/flows/FlowViewPage.ts:86 #: src/pages/flows/FlowViewPage.ts:87
msgid "Execute" msgid "Execute"
msgstr "Execute" msgstr "Execute"
@ -1242,7 +1245,7 @@ msgstr "Field which contains a unique Identifier."
msgid "Field which contains members of a group." msgid "Field which contains members of a group."
msgstr "Field which contains members of a group." msgstr "Field which contains members of a group."
#: src/pages/stages/prompt/PromptStageForm.ts:64 #: src/pages/stages/prompt/PromptStageForm.ts:66
msgid "Fields" msgid "Fields"
msgstr "Fields" msgstr "Fields"
@ -1412,8 +1415,8 @@ msgstr "Hide managed mappings"
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:111 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:111
#: src/pages/stages/identification/IdentificationStageForm.ts:83 #: src/pages/stages/identification/IdentificationStageForm.ts:83
#: src/pages/stages/password/PasswordStageForm.ts:83 #: src/pages/stages/password/PasswordStageForm.ts:83
#: src/pages/stages/prompt/PromptStageForm.ts:82 #: src/pages/stages/prompt/PromptStageForm.ts:84
#: src/pages/stages/prompt/PromptStageForm.ts:103 #: src/pages/stages/prompt/PromptStageForm.ts:118
msgid "Hold control/command to select multiple items." msgid "Hold control/command to select multiple items."
msgstr "Hold control/command to select multiple items." msgstr "Hold control/command to select multiple items."
@ -1659,8 +1662,8 @@ msgstr "Loading"
#: src/pages/stages/identification/IdentificationStageForm.ts:117 #: src/pages/stages/identification/IdentificationStageForm.ts:117
#: src/pages/stages/identification/IdentificationStageForm.ts:135 #: src/pages/stages/identification/IdentificationStageForm.ts:135
#: src/pages/stages/password/PasswordStageForm.ts:103 #: src/pages/stages/password/PasswordStageForm.ts:103
#: src/pages/stages/prompt/PromptStageForm.ts:80 #: src/pages/stages/prompt/PromptStageForm.ts:82
#: src/pages/stages/prompt/PromptStageForm.ts:100 #: src/pages/stages/prompt/PromptStageForm.ts:115
msgid "Loading..." msgid "Loading..."
msgstr "Loading..." msgstr "Loading..."
@ -1818,7 +1821,7 @@ msgstr "Monitor"
#: src/pages/stages/identification/IdentificationStageForm.ts:60 #: src/pages/stages/identification/IdentificationStageForm.ts:60
#: src/pages/stages/invitation/InvitationStageForm.ts:53 #: src/pages/stages/invitation/InvitationStageForm.ts:53
#: src/pages/stages/password/PasswordStageForm.ts:60 #: src/pages/stages/password/PasswordStageForm.ts:60
#: src/pages/stages/prompt/PromptStageForm.ts:53 #: src/pages/stages/prompt/PromptStageForm.ts:55
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:51 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:51
#: src/pages/stages/user_login/UserLoginStageForm.ts:52 #: src/pages/stages/user_login/UserLoginStageForm.ts:52
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:51 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:51
@ -2184,7 +2187,7 @@ msgid "Policy / User / Group"
msgstr "Policy / User / Group" msgstr "Policy / User / Group"
#: src/pages/applications/ApplicationViewPage.ts:133 #: src/pages/applications/ApplicationViewPage.ts:133
#: src/pages/flows/FlowViewPage.ts:104 #: src/pages/flows/FlowViewPage.ts:105
#: src/pages/sources/oauth/OAuthSourceViewPage.ts:154 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:154
#: src/pages/sources/saml/SAMLSourceViewPage.ts:161 #: src/pages/sources/saml/SAMLSourceViewPage.ts:161
msgid "Policy Bindings" msgid "Policy Bindings"
@ -2582,7 +2585,7 @@ msgstr "Select which scopes can be used by the client. The client stil has to sp
msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI."
msgstr "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." msgstr "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI."
#: src/pages/stages/prompt/PromptStageForm.ts:102 #: src/pages/stages/prompt/PromptStageForm.ts:117
msgid "Selected policies are executed when the stage is submitted to validate the data." msgid "Selected policies are executed when the stage is submitted to validate the data."
msgstr "Selected policies are executed when the stage is submitted to validate the data." msgstr "Selected policies are executed when the stage is submitted to validate the data."
@ -2720,7 +2723,7 @@ msgstr "Sources"
msgid "Stage" msgid "Stage"
msgstr "Stage" msgstr "Stage"
#: src/pages/flows/FlowViewPage.ts:96 #: src/pages/flows/FlowViewPage.ts:97
msgid "Stage Bindings" msgid "Stage Bindings"
msgstr "Stage Bindings" msgstr "Stage Bindings"
@ -2745,7 +2748,7 @@ msgstr "Stage used to configure Authenticator when user doesn't have any compati
#: src/pages/stages/identification/IdentificationStageForm.ts:67 #: src/pages/stages/identification/IdentificationStageForm.ts:67
#: src/pages/stages/invitation/InvitationStageForm.ts:60 #: src/pages/stages/invitation/InvitationStageForm.ts:60
#: src/pages/stages/password/PasswordStageForm.ts:67 #: src/pages/stages/password/PasswordStageForm.ts:67
#: src/pages/stages/prompt/PromptStageForm.ts:60 #: src/pages/stages/prompt/PromptStageForm.ts:62
#: src/pages/stages/user_login/UserLoginStageForm.ts:59 #: src/pages/stages/user_login/UserLoginStageForm.ts:59
msgid "Stage-specific settings" msgid "Stage-specific settings"
msgstr "Stage-specific settings" msgstr "Stage-specific settings"
@ -2902,7 +2905,7 @@ msgstr "Successfully created source."
#: src/pages/stages/identification/IdentificationStageForm.ts:47 #: src/pages/stages/identification/IdentificationStageForm.ts:47
#: src/pages/stages/invitation/InvitationStageForm.ts:46 #: src/pages/stages/invitation/InvitationStageForm.ts:46
#: src/pages/stages/password/PasswordStageForm.ts:47 #: src/pages/stages/password/PasswordStageForm.ts:47
#: src/pages/stages/prompt/PromptStageForm.ts:46 #: src/pages/stages/prompt/PromptStageForm.ts:48
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:44 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:44
#: src/pages/stages/user_login/UserLoginStageForm.ts:45 #: src/pages/stages/user_login/UserLoginStageForm.ts:45
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:44 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:44
@ -3038,7 +3041,7 @@ msgstr "Successfully updated source."
#: src/pages/stages/identification/IdentificationStageForm.ts:44 #: src/pages/stages/identification/IdentificationStageForm.ts:44
#: src/pages/stages/invitation/InvitationStageForm.ts:43 #: src/pages/stages/invitation/InvitationStageForm.ts:43
#: src/pages/stages/password/PasswordStageForm.ts:44 #: src/pages/stages/password/PasswordStageForm.ts:44
#: src/pages/stages/prompt/PromptStageForm.ts:43 #: src/pages/stages/prompt/PromptStageForm.ts:45
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:41 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:41
#: src/pages/stages/user_login/UserLoginStageForm.ts:42 #: src/pages/stages/user_login/UserLoginStageForm.ts:42
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:41 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:41
@ -3167,7 +3170,7 @@ msgstr "These policies control when this stage will be applied to the flow."
msgid "These policies control which users can access this application." msgid "These policies control which users can access this application."
msgstr "These policies control which users can access this application." msgstr "These policies control which users can access this application."
#: src/pages/flows/FlowViewPage.ts:106 #: src/pages/flows/FlowViewPage.ts:107
msgid "These policies control which users can access this flow." msgid "These policies control which users can access this flow."
msgstr "These policies control which users can access this flow." msgstr "These policies control which users can access this flow."
@ -3555,7 +3558,7 @@ msgstr "Using source"
msgid "Validate SSL Certificates of upstream servers." msgid "Validate SSL Certificates of upstream servers."
msgstr "Validate SSL Certificates of upstream servers." msgstr "Validate SSL Certificates of upstream servers."
#: src/pages/stages/prompt/PromptStageForm.ts:85 #: src/pages/stages/prompt/PromptStageForm.ts:100
msgid "Validation Policies" msgid "Validation Policies"
msgstr "Validation Policies" msgstr "Validation Policies"
@ -3710,11 +3713,11 @@ msgstr "no tabs defined"
msgid "{0}" msgid "{0}"
msgstr "{0}" msgstr "{0}"
#: src/pages/stages/prompt/PromptStageForm.ts:77 #: src/pages/stages/prompt/PromptStageForm.ts:79
msgid "{0} (\"{1}\", Type {2})" msgid "{0} (\"{1}\", of type {2})"
msgstr "{0} (\"{1}\", Type {2})" msgstr "{0} (\"{1}\", of type {2})"
#: src/pages/stages/prompt/PromptStageForm.ts:97 #: src/pages/stages/prompt/PromptStageForm.ts:112
msgid "{0} ({1})" msgid "{0} ({1})"
msgstr "{0} ({1})" msgstr "{0} ({1})"

View File

@ -433,7 +433,7 @@ msgid "Change your password"
msgstr "" msgstr ""
#: src/pages/applications/ApplicationViewPage.ts:122 #: src/pages/applications/ApplicationViewPage.ts:122
#: src/pages/flows/FlowViewPage.ts:113 #: src/pages/flows/FlowViewPage.ts:114
#: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:147 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:147
#: src/pages/providers/proxy/ProxyProviderViewPage.ts:146 #: src/pages/providers/proxy/ProxyProviderViewPage.ts:146
#: src/pages/providers/saml/SAMLProviderViewPage.ts:140 #: src/pages/providers/saml/SAMLProviderViewPage.ts:140
@ -681,6 +681,8 @@ msgstr ""
#: src/pages/stages/invitation/InvitationListPage.ts:85 #: src/pages/stages/invitation/InvitationListPage.ts:85
#: src/pages/stages/prompt/PromptListPage.ts:96 #: src/pages/stages/prompt/PromptListPage.ts:96
#: src/pages/stages/prompt/PromptListPage.ts:104 #: src/pages/stages/prompt/PromptListPage.ts:104
#: src/pages/stages/prompt/PromptStageForm.ts:87
#: src/pages/stages/prompt/PromptStageForm.ts:95
#: src/pages/user-settings/tokens/UserTokenList.ts:50 #: src/pages/user-settings/tokens/UserTokenList.ts:50
#: src/pages/user-settings/tokens/UserTokenList.ts:58 #: src/pages/user-settings/tokens/UserTokenList.ts:58
#: src/pages/users/UserListPage.ts:143 #: src/pages/users/UserListPage.ts:143
@ -737,6 +739,7 @@ msgid "Create Policy"
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptListPage.ts:99 #: src/pages/stages/prompt/PromptListPage.ts:99
#: src/pages/stages/prompt/PromptStageForm.ts:90
msgid "Create Prompt" msgid "Create Prompt"
msgstr "" msgstr ""
@ -1111,7 +1114,7 @@ msgid "Exception"
msgstr "" msgstr ""
#: src/pages/flows/FlowListPage.ts:98 #: src/pages/flows/FlowListPage.ts:98
#: src/pages/flows/FlowViewPage.ts:86 #: src/pages/flows/FlowViewPage.ts:87
msgid "Execute" msgid "Execute"
msgstr "" msgstr ""
@ -1238,7 +1241,7 @@ msgstr ""
msgid "Field which contains members of a group." msgid "Field which contains members of a group."
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptStageForm.ts:64 #: src/pages/stages/prompt/PromptStageForm.ts:66
msgid "Fields" msgid "Fields"
msgstr "" msgstr ""
@ -1408,8 +1411,8 @@ msgstr ""
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:111 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:111
#: src/pages/stages/identification/IdentificationStageForm.ts:83 #: src/pages/stages/identification/IdentificationStageForm.ts:83
#: src/pages/stages/password/PasswordStageForm.ts:83 #: src/pages/stages/password/PasswordStageForm.ts:83
#: src/pages/stages/prompt/PromptStageForm.ts:82 #: src/pages/stages/prompt/PromptStageForm.ts:84
#: src/pages/stages/prompt/PromptStageForm.ts:103 #: src/pages/stages/prompt/PromptStageForm.ts:118
msgid "Hold control/command to select multiple items." msgid "Hold control/command to select multiple items."
msgstr "" msgstr ""
@ -1655,8 +1658,8 @@ msgstr ""
#: src/pages/stages/identification/IdentificationStageForm.ts:117 #: src/pages/stages/identification/IdentificationStageForm.ts:117
#: src/pages/stages/identification/IdentificationStageForm.ts:135 #: src/pages/stages/identification/IdentificationStageForm.ts:135
#: src/pages/stages/password/PasswordStageForm.ts:103 #: src/pages/stages/password/PasswordStageForm.ts:103
#: src/pages/stages/prompt/PromptStageForm.ts:80 #: src/pages/stages/prompt/PromptStageForm.ts:82
#: src/pages/stages/prompt/PromptStageForm.ts:100 #: src/pages/stages/prompt/PromptStageForm.ts:115
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr ""
@ -1814,7 +1817,7 @@ msgstr ""
#: src/pages/stages/identification/IdentificationStageForm.ts:60 #: src/pages/stages/identification/IdentificationStageForm.ts:60
#: src/pages/stages/invitation/InvitationStageForm.ts:53 #: src/pages/stages/invitation/InvitationStageForm.ts:53
#: src/pages/stages/password/PasswordStageForm.ts:60 #: src/pages/stages/password/PasswordStageForm.ts:60
#: src/pages/stages/prompt/PromptStageForm.ts:53 #: src/pages/stages/prompt/PromptStageForm.ts:55
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:51 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:51
#: src/pages/stages/user_login/UserLoginStageForm.ts:52 #: src/pages/stages/user_login/UserLoginStageForm.ts:52
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:51 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:51
@ -2180,7 +2183,7 @@ msgid "Policy / User / Group"
msgstr "" msgstr ""
#: src/pages/applications/ApplicationViewPage.ts:133 #: src/pages/applications/ApplicationViewPage.ts:133
#: src/pages/flows/FlowViewPage.ts:104 #: src/pages/flows/FlowViewPage.ts:105
#: src/pages/sources/oauth/OAuthSourceViewPage.ts:154 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:154
#: src/pages/sources/saml/SAMLSourceViewPage.ts:161 #: src/pages/sources/saml/SAMLSourceViewPage.ts:161
msgid "Policy Bindings" msgid "Policy Bindings"
@ -2578,7 +2581,7 @@ msgstr ""
msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI."
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptStageForm.ts:102 #: src/pages/stages/prompt/PromptStageForm.ts:117
msgid "Selected policies are executed when the stage is submitted to validate the data." msgid "Selected policies are executed when the stage is submitted to validate the data."
msgstr "" msgstr ""
@ -2716,7 +2719,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: src/pages/flows/FlowViewPage.ts:96 #: src/pages/flows/FlowViewPage.ts:97
msgid "Stage Bindings" msgid "Stage Bindings"
msgstr "" msgstr ""
@ -2741,7 +2744,7 @@ msgstr ""
#: src/pages/stages/identification/IdentificationStageForm.ts:67 #: src/pages/stages/identification/IdentificationStageForm.ts:67
#: src/pages/stages/invitation/InvitationStageForm.ts:60 #: src/pages/stages/invitation/InvitationStageForm.ts:60
#: src/pages/stages/password/PasswordStageForm.ts:67 #: src/pages/stages/password/PasswordStageForm.ts:67
#: src/pages/stages/prompt/PromptStageForm.ts:60 #: src/pages/stages/prompt/PromptStageForm.ts:62
#: src/pages/stages/user_login/UserLoginStageForm.ts:59 #: src/pages/stages/user_login/UserLoginStageForm.ts:59
msgid "Stage-specific settings" msgid "Stage-specific settings"
msgstr "" msgstr ""
@ -2898,7 +2901,7 @@ msgstr ""
#: src/pages/stages/identification/IdentificationStageForm.ts:47 #: src/pages/stages/identification/IdentificationStageForm.ts:47
#: src/pages/stages/invitation/InvitationStageForm.ts:46 #: src/pages/stages/invitation/InvitationStageForm.ts:46
#: src/pages/stages/password/PasswordStageForm.ts:47 #: src/pages/stages/password/PasswordStageForm.ts:47
#: src/pages/stages/prompt/PromptStageForm.ts:46 #: src/pages/stages/prompt/PromptStageForm.ts:48
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:44 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:44
#: src/pages/stages/user_login/UserLoginStageForm.ts:45 #: src/pages/stages/user_login/UserLoginStageForm.ts:45
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:44 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:44
@ -3034,7 +3037,7 @@ msgstr ""
#: src/pages/stages/identification/IdentificationStageForm.ts:44 #: src/pages/stages/identification/IdentificationStageForm.ts:44
#: src/pages/stages/invitation/InvitationStageForm.ts:43 #: src/pages/stages/invitation/InvitationStageForm.ts:43
#: src/pages/stages/password/PasswordStageForm.ts:44 #: src/pages/stages/password/PasswordStageForm.ts:44
#: src/pages/stages/prompt/PromptStageForm.ts:43 #: src/pages/stages/prompt/PromptStageForm.ts:45
#: src/pages/stages/user_delete/UserDeleteStageForm.ts:41 #: src/pages/stages/user_delete/UserDeleteStageForm.ts:41
#: src/pages/stages/user_login/UserLoginStageForm.ts:42 #: src/pages/stages/user_login/UserLoginStageForm.ts:42
#: src/pages/stages/user_logout/UserLogoutStageForm.ts:41 #: src/pages/stages/user_logout/UserLogoutStageForm.ts:41
@ -3161,7 +3164,7 @@ msgstr ""
msgid "These policies control which users can access this application." msgid "These policies control which users can access this application."
msgstr "" msgstr ""
#: src/pages/flows/FlowViewPage.ts:106 #: src/pages/flows/FlowViewPage.ts:107
msgid "These policies control which users can access this flow." msgid "These policies control which users can access this flow."
msgstr "" msgstr ""
@ -3549,7 +3552,7 @@ msgstr ""
msgid "Validate SSL Certificates of upstream servers." msgid "Validate SSL Certificates of upstream servers."
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptStageForm.ts:85 #: src/pages/stages/prompt/PromptStageForm.ts:100
msgid "Validation Policies" msgid "Validation Policies"
msgstr "" msgstr ""
@ -3704,11 +3707,11 @@ msgstr ""
msgid "{0}" msgid "{0}"
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptStageForm.ts:77 #: src/pages/stages/prompt/PromptStageForm.ts:79
msgid "{0} (\"{1}\", Type {2})" msgid "{0} (\"{1}\", of type {2})"
msgstr "" msgstr ""
#: src/pages/stages/prompt/PromptStageForm.ts:97 #: src/pages/stages/prompt/PromptStageForm.ts:112
msgid "{0} ({1})" msgid "{0} ({1})"
msgstr "" msgstr ""

View File

@ -7,6 +7,8 @@ import { Form } from "../../../elements/forms/Form";
import { ifDefined } from "lit-html/directives/if-defined"; import { ifDefined } from "lit-html/directives/if-defined";
import "../../../elements/forms/HorizontalFormElement"; import "../../../elements/forms/HorizontalFormElement";
import "../../../elements/forms/FormGroup"; import "../../../elements/forms/FormGroup";
import "../../../elements/forms/ModalForm";
import "./PromptForm";
import { until } from "lit-html/directives/until"; import { until } from "lit-html/directives/until";
@customElement("ak-stage-prompt-form") @customElement("ak-stage-prompt-form")
@ -70,12 +72,25 @@ export class PromptStageForm extends Form<PromptStage> {
return su == prompt.pk; return su == prompt.pk;
}); });
return html`<option value=${ifDefined(prompt.pk)} ?selected=${selected}> return html`<option value=${ifDefined(prompt.pk)} ?selected=${selected}>
${t`${prompt.fieldKey} ("${prompt.label}", Type ${prompt.type})`} ${t`${prompt.fieldKey} ("${prompt.label}", of type ${prompt.type})`}
</option>`; </option>`;
}); });
}), html`<option>${t`Loading...`}</option>`)} }), html`<option>${t`Loading...`}</option>`)}
</select> </select>
<p class="pf-c-form__helper-text">${t`Hold control/command to select multiple items.`}</p> <p class="pf-c-form__helper-text">${t`Hold control/command to select multiple items.`}</p>
<ak-forms-modal>
<span slot="submit">
${t`Create`}
</span>
<span slot="header">
${t`Create Prompt`}
</span>
<ak-prompt-form slot="form">
</ak-prompt-form>
<button type="button" slot="trigger" class="pf-c-button pf-m-primary">
${t`Create`}
</button>
</ak-forms-modal>
</ak-form-element-horizontal> </ak-form-element-horizontal>
<ak-form-element-horizontal <ak-form-element-horizontal
label=${t`Validation Policies`} label=${t`Validation Policies`}