summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-09 03:18:46 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-09 03:18:46 +0000
commitf119af78abbd9cffda2103d778c3b2f555087e2f (patch)
tree576e330b126a547c05f40926d614094ca09a7de9 /app/assets
parent9ca5333a1227444383b8e01bf0cb173679e65627 (diff)
downloadgitlab-ce-f119af78abbd9cffda2103d778c3b2f555087e2f.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/pages/admin/application_settings/general/components/signup_form.vue18
1 files changed, 1 insertions, 17 deletions
diff --git a/app/assets/javascripts/pages/admin/application_settings/general/components/signup_form.vue b/app/assets/javascripts/pages/admin/application_settings/general/components/signup_form.vue
index 7e6654140a9..cde46c3da50 100644
--- a/app/assets/javascripts/pages/admin/application_settings/general/components/signup_form.vue
+++ b/app/assets/javascripts/pages/admin/application_settings/general/components/signup_form.vue
@@ -58,8 +58,6 @@ export default {
'emailRestrictions',
'afterSignUpText',
'pendingUserCount',
- 'projectSharingHelpLink',
- 'groupSharingHelpLink',
],
data() {
return {
@@ -83,8 +81,6 @@ export default {
supportedSyntaxLinkUrl: this.supportedSyntaxLinkUrl,
emailRestrictions: this.emailRestrictions,
afterSignUpText: this.afterSignUpText,
- projectSharingHelpLink: this.projectSharingHelpLink,
- groupSharingHelpLink: this.groupSharingHelpLink,
},
};
},
@@ -224,7 +220,7 @@ export default {
),
userCapLabel: s__('ApplicationSettings|User cap'),
userCapDescription: s__(
- 'ApplicationSettings|After the instance reaches the user cap, any user who is added or requests access must be approved by an administrator. Leave blank for an unlimited user cap. If you change the user cap to unlimited, you must re-enable %{projectSharingLinkStart}project sharing%{projectSharingLinkEnd} and %{groupSharingLinkStart}group sharing%{groupSharingLinkEnd}.',
+ 'ApplicationSettings|After the instance reaches the user cap, any user who is added or requests access must be approved by an administrator. Leave blank for unlimited.',
),
domainDenyListGroupLabel: s__('ApplicationSettings|Domain denylist'),
domainDenyListLabel: s__('ApplicationSettings|Enable domain denylist for sign-ups'),
@@ -313,7 +309,6 @@ export default {
<gl-form-group
:label="$options.i18n.userCapLabel"
:description="$options.i18n.userCapDescription"
- data-testid="user-cap-form-group"
>
<gl-form-input
v-model="form.userCap"
@@ -321,17 +316,6 @@ export default {
name="application_setting[new_user_signups_cap]"
data-testid="user-cap-input"
/>
-
- <template #description>
- <gl-sprintf :message="$options.i18n.userCapDescription">
- <template #projectSharingLink="{ content }">
- <gl-link :href="projectSharingHelpLink" target="_blank">{{ content }}</gl-link>
- </template>
- <template #groupSharingLink="{ content }">
- <gl-link :href="groupSharingHelpLink" target="_blank">{{ content }}</gl-link>
- </template>
- </gl-sprintf>
- </template>
</gl-form-group>
<gl-form-group :label="$options.i18n.minimumPasswordLengthLabel">