Merge branch 'issue-boards' into 'master'
Issue boards ## What are the relevant issue numbers? - Issue: #17907 - Issue backend: #20335 - Backend MR: !5548 - Frontend MR: !5554 - Documentation !5713 ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [X] ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~ - [X] ~~API support added~~ - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5548
Showing
... | ... | @@ -314,6 +314,7 @@ end |
group :test do | ||
gem 'shoulda-matchers', '~> 2.8.0', require: false | ||
gem 'email_spec', '~> 1.6.0' | ||
gem 'json-schema', '~> 2.6.2' | ||
gem 'webmock', '~> 1.21.0' | ||
gem 'test_after_commit', '~> 0.4.2' | ||
gem 'sham_rack', '~> 1.3.6' | ||
... | ... |
app/models/board.rb
0 → 100644
app/models/list.rb
0 → 100644
spec/factories/boards.rb
0 → 100644
spec/factories/lists.rb
0 → 100644
This diff is collapsed.
spec/models/board_spec.rb
0 → 100644
spec/models/list_spec.rb
0 → 100644
This diff is collapsed.
Please register or sign in to comment