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
2020-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-04-15Added write_repository scope for personal access tokenHoratiu Eugen Vlad
2019-02-06Fix #44332 - Add support for profile and emailGotenXiao
2018-12-19Rename GroupHierarchy into ObjectHierarchyJarka Košanová
- we now use the hierarchy class also for epics - also rename supports_nested_groups? into supports_nested_objects? - move it to a concern
2018-12-19Update specs to rails5 formatblackst0ne
Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
2018-09-21Correct Gitlab Capitalization in code filesMarcel Amirault
2018-06-28Don't hash user ID in OIDC subject claimMarkus Koller
2018-06-07Make all uses of `fixture_file_upload` use relative pathsRobert Speicher
2018-05-07add values to OpenID configuration test, not only checking for issuer keyRoger Rüttimann
2018-04-30Define custom base controller for DoorkeeperBob Van Landuyt
Since we only need the `can?` view helpers there, it's better to include those in a separate controller. If we inherit from `ApplicationController` we also need to deal with authentication, that needs to be done in some, but not all doorkeeper controllers.
2018-02-26Get rid of hard-coded user/project/group names that could clash with DB ↵Rémy Coutable
sequences Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-02-14Fix a too strict array-matching expectationRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-02-08Add groups to OpenID Connect claimsHassan Zamani
2017-11-16Adjust openid_connect_spec to use `raise_error`Bob Van Landuyt
Using the `raise_error`-matcher instead of `throw_symbol` makes sure our after blocks get called in the test suite.
2017-10-20Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo
2017-07-18Update specs for new upload pathBob Van Landuyt
2017-07-11Support multiple Redis instances based on queue typePaul Charlton
2017-06-08Bring in security changes from the 9.2.5 releaseDJ Mountney
Ran: - git format-patch v9.2.2..v9.2.5 --stdout > patchfile.patch - git checkout -b 9-2-5-security-patch origin/v9.2.2 - git apply patchfile.patch - git commit - [Got the sha ref for the commit] - git checkout -b upstream-9-2-security master - git cherry-pick <SHA of the patchfile commit> - [Resolved conflicts] - git cherry-pick --continue
2017-05-10Enable the Style/TrailingCommaInArguments copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-09Revert "Fix OpenID spec failure that assumed current_sign_in_at would be set"Toon Claes
This reverts commit 73f448e589f46865140412754a9c97df52dc16c7.
2017-05-09Add :redis keyword to some specs clear state of trackable attributesToon Claes
The specs that rely on a correct value of the trackable attributes, should include the `:redis` keyword in the spec to ensure the state is reset between various specs. The trackable attributes being: - sign_in_count : Increased every time a sign in is made (by form, openid, oauth) - current_sign_in_at : A timestamp updated when the user signs in - last_sign_in_at : Holds the timestamp of the previous sign in - current_sign_in_ip : The remote ip updated when the user sign in - last_sign_in_ip : Holds the remote ip of the previous sign in The limiting of writing trackable attributes was introduced in gitlab-org/gitlab-ce!11053.
2017-05-09Fix OpenID spec failure that assumed current_sign_in_at would be setStan Hu
Due to 6a915d6f, the `current_sign_in_at` may not actually be set due to an ExclusiveLease in other jobs. To fix this spec, manually set the value in the setup. Closes #32041
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-03-07Implement OpenID Connect identity providerMarkus Koller