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-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 }`
2017-10-20Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo
2017-04-26Enable RSpec/FilePath copSean McGivern
- Ignore JS fixtures - Ignore qa directory - Rewrite concern specs to put concern name first
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-07Don't allow blocked users to authenticate through other meansMarkus Koller
Gitlab::Auth.find_with_user_password is currently used in these places: - resource_owner_from_credentials in config/initializers/doorkeeper.rb, which is used for the OAuth Resource Owner Password Credentials flow - the /session API call in lib/api/session.rb, which is used to reveal the user's current authentication_token In both cases users should only be authenticated if they're in the active state.
2016-08-19Small refactor and syntax fixes.Patricio Cano
2016-08-19Added documentation and CHANGELOG itemPatricio Cano
2016-08-19Added checks for 2FA to the API `/sessions` endpoint and the Resource Owner ↵Patricio Cano
Password Credentials flow.