| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Fix local RSpec tests due to bug in `webpack_bundle_tag`
Closes #42368
See merge request gitlab-org/gitlab-ce!16724
|
| | |
| | |
| | |
| | | |
breaking local rspec tests
|
| | | |
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Search query is especially slow if a user searches a generic string
which matches many records, in such case search can take tens of
seconds or time out. To speed up the search query, we search only for
first 1000 records, if there is >1000 matching records we just display
"1000+" instead of precise total count supposing that with such amount
the exact count is not so important for the user.
Because for issues even limited search was not fast enough, 2-phase
approach is used for issues: first we use simpler/faster query to get
all public issues, if this exceeds the limit, we just return the limit.
If the amount of matching results is lower than limit, we re-run more
complex search query (which includes also confidential issues).
Re-running the complex query should be fast enough in such case because the
amount of matching issues is lower than limit.
Because exact total_count is now limited, this patch also switches to
to "prev/next" pagination.
Related #40540
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Resolve "Password authentication enabled for Git over HTTP(S) can not be disabled via UI"
Closes #42206
See merge request gitlab-org/gitlab-ce!16577
|
| | |
| | |
| | |
| | | |
ApplicationSettingsController
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | | |
Show why a notification email was sent
Closes #41532 and #1366
See merge request gitlab-org/gitlab-ce!16160
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Adds `#build_notification_recipients` to `NotificationRecipientService`
that returns the `NotificationRecipient` objects in order to be able to
access the new attribute `reason`.
This new attribute is used in the different notifier methods in order to
add the reason as a header: `X-GitLab-NotificationReason`.
Only the reason with the most priority gets sent.
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Use last_edited_at instead of updated_at for displaying issuable last change
Closes #41247
See merge request gitlab-org/gitlab-ce!16406
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
For issuable models we keep two timestamps:
updated_at which is updated whenever any model attribute is changed,
last_edited_at which is changed when only title or description is
changed.
In UI bellow description we display who and when updated the item. But
last_edited_by (used for 'who') is mistakenly combined with updated_at
(when), last_edited_at should be used instead.
Closes #41247
|
|\ \ \
| |/ /
|/| |
| | |
| | |
| | |
| | | |
Remove unnecessary query from labels dropdown
Closes #37143
See merge request gitlab-org/gitlab-ce!16520
|
| | | |
|
| |/
|/| |
|
|/
|
|
|
|
| |
We should use this limit everywhere, but especially in project search results,
where we could be highlighting very long single lines. (Typical examples:
minified JavaScript, and JSON data files.)
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| | |
Fix changes dropdown ellipsis working across browsers
Closes #41561 and #41684
See merge request gitlab-org/gitlab-ce!16281
|
| |
| |
| |
| | |
Closes #41561
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Backport authorized_keys
Closes gitlab-ee#3953
See merge request gitlab-org/gitlab-ce!16014
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Originally branch 'mk-toggle-writing-to-auth-keys-1631'
See merge request !2004
Squashed commits:
Add authorized_keys_enabled to Application Settings
Ensure default settings are exposed in UI
Without this change, `authorized_keys_enabled` is unchecked when it is nil, even if it should be checked by default.
Add “Speed up SSH operations” documentation
Clarify the reasons for disabling writes
Add "How to go back" section
Tweak copy
Update Application Setting screenshot
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | | |
Remove unused push_code_to_protected_branches
Closes #38056
See merge request gitlab-org/gitlab-ce!16253
|
| |/ |
|
|/ |
|
|\
| |
| |
| |
| |
| |
| | |
Remove downcase from special path helper
Closes #41590
See merge request gitlab-org/gitlab-ce!16232
|
| | |
|
| | |
|
|/ |
|
|\
| |
| |
| |
| | |
Replace the download, fork and resolve discussion in a new issue icons
See merge request gitlab-org/gitlab-ce!15436
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Enables ordering groups and their children by name in the web interface
Closes #24962 et #36958
See merge request gitlab-org/gitlab-ce!16045
|
| | | |
|
| |/ |
|
|/ |
|
|\
| |
| |
| |
| | |
Fix cluster enviroment missing
See merge request gitlab-org/gitlab-ce!15973
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Add button to run scheduled pipeline immediately
Closes #38741
See merge request gitlab-org/gitlab-ce!15700
|
| | | |
|
| | |
| | |
| | |
| | | |
Closes #38741
|
|\ \ \
| |_|/
|/| |
| | |
| | | |
Stop sending milestone and labels for Projects::MergeRequestsController#show.json requests
See merge request gitlab-org/gitlab-ce!15847
|
| | |
| | |
| | |
| | | |
requests
|
| |/
|/|
| |
| |
| |
| |
| | |
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/33926
Changed file icons already addressed in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/15367
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
'tmlee/gitlab-ce-28004-consider-refactoring-member-view-by-using-presenter' into 'master'
Refactor member view by using presenter
Closes #28004
See merge request gitlab-org/gitlab-ce!15715
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Create MemberPresenter alongside with GroupMemberPresenter and ProjectMemberPresenter
- Make Member model Presentable
- Move action_member_permission from MembersHelper into the MemberPresenter
- Added rspec using double, separate specs for GroupMemberPresenter and ProjectMemberPresenter
Fixes #28004.
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Hide issues and MRs in labels list if disabled
See merge request gitlab-org/gitlab-ce!15863
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \
| |/ /
|/| |
| | |
| | |
| | |
| | | |
Use app host instead of asset host when rendering image blob or diff
Closes #41002
See merge request gitlab-org/gitlab-ce!15854
|