Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b7edea3f
Commit
b7edea3f
authored
Mar 03, 2021
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab master
parents
2550d936
87a06997
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
17 deletions
+15
-17
app/assets/javascripts/pages/profiles/index.js
app/assets/javascripts/pages/profiles/index.js
+13
-15
doc/user/group/index.md
doc/user/group/index.md
+2
-2
No files found.
app/assets/javascripts/pages/profiles/index.js
View file @
b7edea3f
...
...
@@ -3,21 +3,19 @@ import '~/profile/gl_crop';
import
Profile
from
'
~/profile/profile
'
;
import
initSearchSettings
from
'
~/search_settings
'
;
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
// eslint-disable-next-line func-names
$
(
document
).
on
(
'
input.ssh_key
'
,
'
#key_key
'
,
function
()
{
const
$title
=
$
(
'
#key_title
'
);
const
comment
=
$
(
this
)
.
val
()
.
match
(
/^
\S
+
\S
+
(
.+
)\n?
$/
);
// eslint-disable-next-line func-names
$
(
document
).
on
(
'
input.ssh_key
'
,
'
#key_key
'
,
function
()
{
const
$title
=
$
(
'
#key_title
'
);
const
comment
=
$
(
this
)
.
val
()
.
match
(
/^
\S
+
\S
+
(
.+
)\n?
$/
);
// Extract the SSH Key title from its comment
if
(
comment
&&
comment
.
length
>
1
)
{
$title
.
val
(
comment
[
1
]).
change
();
}
});
// Extract the SSH Key title from its comment
if
(
comment
&&
comment
.
length
>
1
)
{
$title
.
val
(
comment
[
1
]).
change
();
}
});
new
Profile
();
// eslint-disable-line no-new
new
Profile
();
// eslint-disable-line no-new
initSearchSettings
();
});
initSearchSettings
();
doc/user/group/index.md
View file @
b7edea3f
...
...
@@ -720,8 +720,8 @@ To enable prevent project forking:
access each project's settings, and remove any project, all from the same screen.
-
**Webhooks**
: Configure
[
webhooks
](
../project/integrations/webhooks.md
)
for your group.
-
**Kubernetes cluster integration**
: Connect your GitLab group with
[
Kubernetes clusters
](
clusters/index.md
)
.
-
**Audit Events**
: View
[
Audit Events
](
../../administration/audit_events.md
)
for the group.
**(PREMIUM SELF)**
-
**Audit Events**
: View
[
Audit Events
](
../../administration/audit_events.md
#group-events
)
for the group.
-
**Pipelines quota**
: Keep track of the
[
pipeline quota
](
../admin_area/settings/continuous_integration.md
)
for the group.
-
**Integrations**
: Configure
[
integrations
](
../admin_area/settings/project_integration_management.md
)
for your group.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment