summaryrefslogtreecommitdiff
path: root/spec/factories
Commit message (Collapse)AuthorAgeFilesLines
* Implement OpenID Connect identity providerMarkus Koller2017-03-073-2/+14
|
* Merge branch 'feature/runner-jobs-v4-api' into 'master' Kamil Trzciński2017-03-071-2/+28
|\ | | | | | | | | | | | | Feature/runner jobs v4 api Closes #28513 See merge request !9273
| * Add some fixes and refactoring after reviewTomasz Maczukin2017-03-021-0/+4
| |
| * Refactor JobRequest response structureTomasz Maczukin2017-03-021-2/+24
| |
* | Merge branch 'pipeline-blocking-actions' into 'master' Kamil Trzciński2017-03-062-2/+9
|\ \ | | | | | | | | | | | | | | | | | | Make manual actions blocking Closes #26360 and #22628 See merge request !9585
| * | Extend specs for code we use to calculate statusesGrzegorz Bizon2017-03-061-0/+4
| | |
| * | Fix specs for detailed statuses for manual actionsGrzegorz Bizon2017-03-061-1/+0
| | |
| * | Fix specs for environments with manual actionsGrzegorz Bizon2017-03-061-1/+1
| | |
| * | Refactor code related to pipeline blocking actionsGrzegorz Bizon2017-03-061-0/+4
| | |
* | | DRY up {jira,kubernets}_project factoriesfix-mentioned-issues-for-external-trackersSean McGivern2017-03-061-21/+2
| | |
* | | Fix issues mentioned but not closed for JIRASean McGivern2017-03-061-0/+9
|/ / | | | | | | | | | | | | The `ReferenceExtractor` would return an array of `ExternalIssue` objects, and then perform `Array#-` to remove the issues closed. `ExternalIssue`s had `==` defined, but not `hash` or `eql?`, which are used by `Array#-`.
* | Merge branch 'fix/gb/fix-build-retry-tags-assignment' into 'master' Kamil Trzciński2017-03-031-0/+12
|\ \ | | | | | | | | | | | | | | | | | | Fix runner tags assignment when retrying a job Closes #28846 See merge request !9612
| * | Improve build retry service tests for cloning dataGrzegorz Bizon2017-03-011-0/+8
| | |
| * | Fix runner tags assignment when retrying a jobGrzegorz Bizon2017-03-011-0/+4
| | |
* | | Merge branch 'dm-fix-api-create-file-on-empty-repo' into 'master' Robert Speicher2017-03-021-0/+4
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Fix creating a file in an empty repo using the API Closes #28626 See merge request !9632
| * | Delete hooks from project with empty repositorydm-fix-api-create-file-on-empty-repoDouwe Maan2017-03-021-0/+4
| | |
* | | Merge branch 'fix/mwbs-to-mwps' into 'master' Douwe Maan2017-03-011-2/+2
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Rename MWBS to MWPS Closes #24707 See merge request !9335
| * | Update occurrences of MWBS to MWPSfix/mwbs-to-mwpsJames Lopez2017-03-011-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename column in the database Rename fields related to import/export feature Rename API endpoints Rename documentation links Rename the rest of occurrences in the code Replace the images that contain the words "build succeeds" and docs referencing to them Make sure pipeline is green and nothing is missing. updated doc images renamed only_allow_merge_if_build_succeeds in projects and fixed references more updates fix some spec failures fix rubocop offences fix v3 api spec fix MR specs fixed issues with partials fix MR spec fix alignment add missing v3 to v4 doc wip - refactor v3 endpoints fix specs fix a few typos fix project specs copy entities fully to V3 fix entity error more fixes fix failing specs fixed missing entities in V3 API remove comment updated code based on feedback typo fix spec
* | Merge branch '22951-fix-todos-api-endpoint-error-for-commits' into 'master' Sean McGivern2017-03-011-5/+9
|\ \ | |/ |/| | | | | | | | | Fix todos API endpoint application error Closes #22951 See merge request !9351
| * Remove on_commit trait from todos factoryGeorge Andrinopoulos2017-02-281-5/+0
| |
| * Add spec for todo with target_type CommitGeorge Andrinopoulos2017-02-211-0/+9
| |
* | Merge branch 'dm-fix-web-edit-new-lines' into 'master' Robert Speicher2017-02-241-9/+6
|\ \ | | | | | | | | | | | | Consistently create, update, and delete files, taking CRLF settings into account See merge request !9207
| * | Rename commit_file, commit_dir and remove_file and update specsDouwe Maan2017-02-241-9/+6
| | |
* | | Don't allow deleting a ghost user.Timothy Andrew2017-02-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add a `destroy_user` ability. This didn't exist before, and was implicit in other abilities (only admins could access the admin area, so only they could destroy all users; a user can only access their own account page, and so can destroy only themselves). - Grant this ability to admins, and when the current user is trying to destroy themselves. Disallow destroying ghost users in all cases. - Modify the `Users::DestroyService` to check this ability. Also check it in views to decide whether or not to show the "Delete User" button. - Add a short summary of the Ghost User to the bio.
* | | Use a `ghost` boolean to track ghost users.Timothy Andrew2017-02-241-0/+4
|/ / | | | | | | | | | | Rather than using a separate `ghost` state. This lets us have the benefits of both ghost and blocked users (ghost: true, state: blocked) without having to rewrite a number of queries to include cases for `state: ghost`.
* | Fixes after reviewcreate_branch_repo_lessValery Sizov2017-02-231-0/+10
| |
* | Merge branch '25465-todo-done-clicking-is-kind-of-unsafe' into 'master' Clement Ho2017-02-181-0/+4
|\ \ | | | | | | | | | | | | | | | | | | Todo done clicking is kind of unusable. Closes #25465 See merge request !8691
| * | Todo done clicking is kind of unusable.Jacopo2017-02-171-0/+4
| |/ | | | | | | | | | | The Done button will change to an Undo button and the line item will be greyed out. Bold links will be unbolded. The user can undo the task by clicking the Undo button.
* | Merge branch 'master' into fix/gb/pipeline-retry-builds-startedGrzegorz Bizon2017-02-177-3/+60
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (313 commits) Allow slashes in slash command arguments Add API endpoint to get all milestone merge requests remove trailing comma Restore pagination to admin abuse reports replace deprecated NoErrorsPlugin with NoEmitOnErrorsPlugin only compress assets in production Reduce number of pipelines created to test pagination add CHANGELOG.md entry for !8761 prevent diff unfolding link from appearing for deleted files fix build failures only show diff unfolding link if there are more lines to show fix typo in node section Only yield valid references in ReferenceFilter.references_in Cache js selectors; fix css move "Install node modules" step before "Migrate DB" within update process Renders pagination again for pipelines table update migration docs for 8.17 to include minimum node version Add CHANGELOG file Fix positioning of top scroll button Remove comments in migration ...
| * \ Merge branch '26500-informative-slack-notifications' into 'master' Kamil Trzciński2017-02-172-0/+22
| |\ \ | | |/ | |/| | | | | | | | | | | | | Adding links to user & build stage in a Build message Closes #26500 See merge request !8641
| | * Adding links to user & build in Chat NotificationsPoornima M2017-01-252-0/+22
| | |
| * | Merge branch 'svg-xss-fix' into 'security' Robert Speicher2017-02-151-1/+5
| | | | | | | | | | | | | | | Fix for XSS vulnerability in SVG attachments See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2059
| * | Add tests for WikiPages servicesMark Fletcher2017-02-141-0/+18
| | | | | | | | | | | | * Alter wiki_pages factory with custom creation operation
| * | Merge branch '27480_deploy_keys_should_not_show_up_in_users_keys_list' into ↵Douwe Maan2017-02-131-2/+5
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Make deploy key not show in User's keys list Closes #27480 See merge request !9024
| | * | Make deploy key not show in User's keys listPawel Chojnacki2017-02-131-2/+5
| | | |
| * | | Merge branch '23535-folders-in-wiki-repository' into 'master' Douwe Maan2017-02-131-0/+6
| |\ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | Show directory hierarchy when listing wiki pages Closes #23535 See merge request !8133
| | * | Merge branch 'master' into 23535-folders-in-wiki-repositoryAlex Braha Stoll2017-01-2922-19/+78
| | |\ \
| | * | | Add model WikiDirectoryAlex Braha Stoll2016-12-311-0/+6
| | | | |
| * | | | Merge branch '24976-start-of-line-mention' into 'master' Sean McGivern2017-02-131-0/+4
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Feature to create directly addressed Todos when mentioned in beginning Closes #24976 See merge request !7926
| | * | | | Create directly_addressed Todos when mentioned in beginning of a lineErshad Kunnakkadan2017-02-081-0/+4
| | | | | |
* | | | | | Make build clone/retry implementation more robustfix/gb/pipeline-retry-builds-startedGrzegorz Bizon2017-02-161-1/+12
|/ / / / /
* | | | | Don't perform Devise trackable updates on blocked User recordsrs-warden-blocked-usersRobert Speicher2017-02-101-0/+8
|/ / / /
* | | | Merge branch '26705-filter-todos-by-manual-add' into 'master'Sean McGivern2017-02-081-0/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Filter todos by manual add Closes #26705 See merge request !8861
| * | | | Filter todos by manual addJacopo2017-01-281-0/+4
| | |/ / | |/| | | | | | | | | | Added the option to filter todo by Added and Pipelines
* | | | Use normal associations instead of polymorphic.Ruben Davila2017-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We can't properly use foreign keys on columns that are configured for polymorphic associations which has disadvantages related to data integrity and storage. Given we only use time tracking for Issues and Merge Requests we're moving to the usage of regular associations.
* | | | Merge branch 'jej-pages-to-ce' into 'master' Douwe Maan2017-02-061-0/+153
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding GitLab Pages to CE Closes #14605, gitlab-com/infrastructure#1058, gitlab-ee#1333, and #323 See merge request !8463
| * \ \ \ Merge branch 'master' into 'jej-pages-to-ce'jej-pages-to-ceJames Edwards-Jones2017-02-063-7/+12
| |\ \ \ \ | | | | | | | | | | | | | | | | | | # Conflicts: # db/schema.rb
| * \ \ \ \ Merge branch 'master' into jej-pages-picked-from-eeJames Edwards-Jones2017-02-031-0/+36
| |\ \ \ \ \
| * | | | | | Update commentsKamil Trzcinski2017-01-311-4/+2
| | | | | | |
| * | | | | | Verify trusted certificate chainKamil Trzcinski2017-01-311-1/+77
| | | | | | |