Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-17Filter out archived projects from issue/mr countBrett Walker
Pass the 'non_archived' flag to finder methods
2018-09-14Resolve "Add functionality to change what email address online actions ↵Nick Thomas
commit using"
2018-09-07Ask user explicitly about usage stats agreementJan Provaznik
2018-09-06Port changes for CODEOWNERS to CEBob Van Landuyt
This ports the changes for the CODEOWNERS feature to CE: - It adds the CODEOWNERS file. - It adds the mention of the `with-codeowners` branch in TestEnv
2018-08-21Fix SQL error when sorting 2FA-enabled users by name in admin areaDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-08-20Refactor AutocompleteControllerYorick Peterse
This refactors the AutocompleteController according to the guidelines and boundaries discussed in https://gitlab.com/gitlab-org/gitlab-ce/issues/49653. Specifically, ActiveRecord logic is moved to different finders, which are then used in the controller. View logic in turn is moved to presenters, instead of directly using ActiveRecord's "to_json" method. The finder MoveToProjectFinder is also adjusted according to the abstraction guidelines and boundaries, resulting in a much more simple finder. By using finders (and other abstractions) more actively, we can push a lot of logic out of the controller. We also remove the need for various "before_action" hooks, though this could be achieved without using finders as well. The various finders related to AutcompleteController have also been moved into a namespace. This removes the need for calling everything "AutocompleteSmurfFinder", instead you can use "Autocomplete::SmurfFinder".
2018-08-01Merge branch 'bvl-user-status-message-35463' into 'master'Rémy Coutable
Allow users to set a status Closes #35463 See merge request gitlab-org/gitlab-ce!20614
2018-07-30Allow users to set a statusBob Van Landuyt
This can be done trough the API for the current user, or on the profile page.
2018-07-29Add support for searching users by confirmed e-mailsStan Hu
This is in preparation for modifying importers to assign e-mails for only confirmed emails.
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-09Merge branch 'update-rubocop'Sean McGivern
2018-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-07-07Rails5 fix mysql milliseconds problem in specsJasper Maes
2018-06-05send ico files with inline dispositionAlexis Reigel
2018-06-01Merge branch '46010-add-more-validations-for-runners-and-runner-type' into ↵Kamil Trzciński
'master' Improve validations for Ci::Runner#runner_type See merge request gitlab-org/gitlab-ce!18901
2018-05-31Export assigned issues in iCalendar feedImre Farkas
2018-05-31Fix spec for User#ci_owned_runnersDylan Griffith
2018-05-31Refactor validations and make runner factory by default to be instance-wide ↵Kamil Trzciński
runner
2018-05-22Don't set the notification_email when only unconfirmed_email is changedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-05-17Resolve "Opening Project with invite but without accepting leads to 404 ↵🙈 jacopo beschi 🙉
error page"
2018-05-16Merge branch 'jprovazn-remote-upload-destroy' into 'master'Kamil Trzciński
Delete remote uploads Closes #45425 See merge request gitlab-org/gitlab-ce!18698
2018-05-16Rename User#ci_authorized_runners -> ci_owned_runnersDylan Griffith
2018-05-16Allow group runners to be viewed/edited in APIDylan Griffith
2018-05-16Delete remote uploadsJan Provaznik
ObjectStore uploader requires presence of associated `uploads` record when deleting the upload file (through the carrierwave's after_commit hook) because we keep info whether file is LOCAL or REMOTE in `upload` object. For this reason we can not destroy uploads as "dependent: :destroy" hook because these would be deleted too soon. Instead we rely on carrierwave's hook to destroy `uploads` in after_commit hook. But in before_destroy hook we still have to delete not-mounted uploads (which don't use carrierwave's destroy hook). This has to be done in before_Destroy instead of after_commit because `FileUpload` requires existence of model's object on destroy action. This is not ideal state of things, in a next step we should investigate how to unify model dependencies so we can use same workflow for all uploads. Related to #45425
2018-05-15Does not log failed sign-in attempts when database is in read-only modeDouglas Barbosa Alexandre
2018-05-10Block access to API & git when terms are enforcedBob Van Landuyt
When terms are enforced, but the user has not accepted the terms access to the API & git is rejected with a message directing the user to the web app to accept the terms.
2018-04-23Resolve "Namespace factory is problematic"Lin Jen-Shin
2018-04-09Allow group owner to enable runners from subgroups (#41981)Dylan Griffith
2018-04-06Cache personal projects count.Andreas Brandl
Closes #37462.
2018-04-05Ensure internal users (ghost, support bot) get assigned a namespaceDouwe Maan
2018-04-04[Rails5] Rename `sort` methods to `sort_by_attribute`blackst0ne
2018-03-29Merge branch 'dm-deploy-keys-default-user' into 'master'Sean McGivern
Ensure hooks run when a deploy key without a user pushes Closes #44317 See merge request gitlab-org/gitlab-ce!18057
2018-03-28Don’t delete deploy key when user who created it is deletedDouwe Maan
2018-03-28Remove permanent redirectsBob Van Landuyt
Removes permanent redirects, this means that redirects will only be possible as long as the old route isn't taken by a new project/group.
2018-03-22Change avatar error message to include allowed file formatsFabian Schneider
2018-03-07Leverage user_contributed_projects to find recent events.Andreas Brandl
Closes #40525.
2018-03-02Extract method User#authorizations_for_projects.Andreas Brandl
2018-02-18Don't attempt to update user tracked fields if database is in read-onlyStan Hu
With Geo, attempting to view an endpoint with a user could result in an Error 500 since Devise attempts to update the last sign-in IP and other details. Closes gitlab-org/gitlab-ee#4972
2018-02-13Strip whitespace from username/login value for user lookupPeter Lauck
As per the discussion with @psimyn, this change does not affect the frontend, so user input will not be validated on the signin screen. Instead, the value sent to the backend has leading and trailing whitespace stripped before looking up the user with find_by. Closes #42637
2018-02-08Merge branch 'feature/oidc-groups-claim' into 'master'Douwe Maan
Add groups to OpenID Connect claims See merge request gitlab-org/gitlab-ce!16929
2018-02-08Add groups to OpenID Connect claimsHassan Zamani
2018-02-06Validate User username only on Namespace, and bubble up appropriatelyDouwe Maan
2018-02-06Validate path uniqueness only on Route, and bubble up appropriatelyDouwe Maan
2018-02-06Validate user namespace before saving so that errors persist on modelDouwe Maan
2018-02-06Merge branch '26468-fix-admin-recent-sign-in' into 'master'Rémy Coutable
Using correct column for sorting users by Recent Sign-in Closes #26468 See merge request gitlab-org/gitlab-ce!13852
2018-02-0631885 - Ability to transfer a single group to another groupMayra Cabrera
2018-02-05Using correct column for sorting users by Recent Sign-inPoornima
Removing last_sign_in_at in specs
2018-02-05Add foreign keys to todos table.Andreas Brandl
Fixes #32282.
2018-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
2018-01-24Use the DatabaseCleaner 'deletion' strategy instead of 'truncation'Nick Thomas