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
cb203863
Commit
cb203863
authored
Feb 04, 2021
by
Jonas Waelter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Add changelog"
This reverts commit
8a2b72db
.
parent
8a2b72db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
changelogs/unreleased/fix-include-external-users-in-user-search.yml
.../unreleased/fix-include-external-users-in-user-search.yml
+0
-5
db/structure.sql
db/structure.sql
+2
-2
No files found.
changelogs/unreleased/fix-include-external-users-in-user-search.yml
deleted
100644 → 0
View file @
8a2b72db
---
title
:
'
API:
include
external
users
in
user
search
for
non-admins'
merge_request
:
author
:
Jonas Wälter @wwwjon
type
:
changed
db/structure.sql
View file @
cb203863
...
...
@@ -9410,8 +9410,8 @@ CREATE TABLE application_settings (
invisible_captcha_enabled
boolean
DEFAULT
false
NOT
NULL
,
container_registry_cleanup_tags_service_max_list_size
integer
DEFAULT
200
NOT
NULL
,
enforce_ssh_key_expiration
boolean
DEFAULT
false
NOT
NULL
,
asset_proxy_allowlist
text
,
git_two_factor_session_expiry
integer
DEFAULT
15
NOT
NULL
,
asset_proxy_allowlist
text
,
CONSTRAINT
app_settings_container_reg_cleanup_tags_max_list_size_positive
CHECK
((
container_registry_cleanup_tags_service_max_list_size
>=
0
)),
CONSTRAINT
app_settings_registry_exp_policies_worker_capacity_positive
CHECK
((
container_registry_expiration_policies_worker_capacity
>=
0
)),
CONSTRAINT
check_17d9558205
CHECK
((
char_length
((
kroki_url
)::
text
)
<=
1024
)),
...
...
@@ -21047,7 +21047,7 @@ CREATE UNIQUE INDEX epic_user_mentions_on_epic_id_and_note_id_index ON epic_user
CREATE
UNIQUE
INDEX
epic_user_mentions_on_epic_id_index
ON
epic_user_mentions
USING
btree
(
epic_id
)
WHERE
(
note_id
IS
NULL
);
CREATE
INDEX
expired_artifacts_temp_index
ON
ci_job_artifacts
USING
btree
(
id
,
created_at
)
WHERE
((
expire_at
IS
NULL
)
AND
(
created_at
<
'2020-06-22 0
2:00:00+02
'
::
timestamp
with
time
zone
));
CREATE
INDEX
expired_artifacts_temp_index
ON
ci_job_artifacts
USING
btree
(
id
,
created_at
)
WHERE
((
expire_at
IS
NULL
)
AND
(
created_at
<
'2020-06-22 0
0:00:00+00
'
::
timestamp
with
time
zone
));
CREATE
INDEX
finding_links_on_vulnerability_occurrence_id
ON
vulnerability_finding_links
USING
btree
(
vulnerability_occurrence_id
);
...
...
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