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-03-05Address review commentsFelipe Artur
2018-03-03Bring one group board to CEFelipe Artur
2018-03-01Remove u2f webpack bundleMike Greiling
2018-03-01Merge branch 'feature/move_oauth_modules_to_auth_dir_structure' into 'master'Douwe Maan
Moved o_auth/saml/ldap modules under gitlab/auth See merge request gitlab-org/gitlab-ce!17359
2018-02-28Moved o_auth/saml/ldap modules under gitlab/authHoratiu Eugen Vlad
2018-02-28Render MR Notes with Vue with behind a cookieFatih Acet
2018-02-27Merge branch '43510-merge-requests-and-issues-don-t-show-for-all-subgroups' ↵Grzegorz Bizon
into 'master' Resolve "Merge requests and issues don't show for all subgroups" Closes #43510 See merge request gitlab-org/gitlab-ce!17312
2018-02-27Fix subgroup issue and MR pages empty states and countsSean McGivern
Previously, these wouldn't count issues or MRs in subgroups - meaning that if _this_ group had no issues or MRs, we'd show the empty state, which was wrong.
2018-02-26Merge branch '41255-refactoring-of-blob-link-methods-in-blob_helper' into ↵Douwe Maan
'master' Resolve "Refactoring of blob link methods in blob_helper" Closes #41255 See merge request gitlab-org/gitlab-ce!16851
2018-02-26Don't convert issuable_initial_data into JSONJan Provaznik
Instead of converting hash into JSON inside issuable_initial_data method, return hash and convert to JSON later. This allows us to easily extend basic issuable data with resource specific values. For example for Epic these data should include also labels, so we can then do something like: issuable_initial_data(@epic).merge(labels: @epic.labels).to_json
2018-02-23refactor methods inlineJames Lopez
2018-02-23inline methodsJames Lopez
2018-02-23fix fork button issueJames Lopez
2018-02-23refactor code based on feedbackJames Lopez
2018-02-23refactor code based on feedbackJames Lopez
2018-02-23refactor blob link methodsJames Lopez
2018-02-23fix static analysisJames Lopez
2018-02-23fix specsJames Lopez
2018-02-23fix specsJames Lopez
2018-02-23fix specsJames Lopez
2018-02-23more refactoringJames Lopez
2018-02-23some initial refactoringJames Lopez
2018-02-23refactor modify_file_linkJames Lopez
2018-02-23fix specJames Lopez
2018-02-23fix specsJames Lopez
2018-02-23some more refactoringJames Lopez
2018-02-23fix specsJames Lopez
2018-02-23refactor methods further (in helper)James Lopez
2018-02-23a bit more refactoringJames Lopez
2018-02-23initial refactorJames Lopez
2018-02-23Add DNS verification to Pages custom domainsNick Thomas
2018-02-23Merge branch 'bvl-external-auth-port' into 'master'Douwe Maan
Port `read_cross_project` ability from EE See merge request gitlab-org/gitlab-ce!17208
2018-02-23Add Tip about Push to Create project on New Project pageAndré Luís
2018-02-22Move can_current_user_push_to_branch to PresenterOswaldo Ferreira
2018-02-22Simplify project check with duck typingOswaldo Ferreira
2018-02-22Port `read_cross_project` ability from EEBob Van Landuyt
2018-02-22Merge branch 'master' into 42431-add-auto-devops-and-clusters-button-to-projectsEric Eastwood
2018-02-20Move button list logic to project presenterOswaldo Ferreira
2018-02-16alias create and update actions to new and editMike Greiling
2018-02-16Add Auto DevOps and Kubernetes cluster button to project pageEric Eastwood
2018-02-14Merge branch '42800-change-usage-of-avatar_icon' into 'master'Yorick Peterse
Change all occurrences of ApplicationHelper#avatar_icon to use a User object where possible Closes #42800 See merge request gitlab-org/gitlab-ce!16976
2018-02-14Merge branch '37050-ext-issue-tracker' into 'master'Sean McGivern
Display a link to external issue tracker when enabled Closes #37050 See merge request gitlab-org/gitlab-ce!17030
2018-02-14Display a link to external issue tracker when enabledJarka Kadlecová
2018-02-13Render modified icon for moved fileFilipa Lacerda
2018-02-13Extract repeated logic into #avatar_icon_for.Andreas Brandl
This essentially allows to pass both user and email, so that we can either prefer the user to retrieve the avatar or (if user is not present) fall back to the email lookup.
2018-02-13Extract method to improve readability.Andreas Brandl
2018-02-13Remove generic #avatar_icon helper.Andreas Brandl
2018-02-13Explicit use of avatar_icon_* calls depending on situation.Andreas Brandl
We want to drop the generic #avatar_icon helper that supports both an email and a user object being passed in. Instead, we want to explicitly use the #avatar_icon_for_user and #avatar_icon_for_email helpers depending on what we have at hand. This allows us to avoid unnecessary database queries (e.g. call User.find_by_any_email if we already have the user). In situations like here, this makes it less convenient to use.
2018-02-13Retrieve namespace owner's avatar by owner, not owner#email.Andreas Brandl
2018-02-13Use more specific #avatar_icon_for_user.Andreas Brandl
Whenever we already deal with a User object, let's use the more specific method avatar_icon_for_user.