diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-01-27 03:23:07 -0200 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2017-02-03 17:02:43 +0300 |
commit | 682d213f431ea83f277fc2a362c994ee17c2f44b (patch) | |
tree | cfd432bb4fb12a49506bad6a61076fc8788284f3 /app/models/board.rb | |
parent | 3aabf0c6aa2b76ef4458250ca98876e3f268fe14 (diff) | |
download | gitlab-ce-682d213f431ea83f277fc2a362c994ee17c2f44b.tar.gz |
Remove backlog lists from boards
Diffstat (limited to 'app/models/board.rb')
-rw-r--r-- | app/models/board.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/models/board.rb b/app/models/board.rb index c56422914a9..2780acc67c0 100644 --- a/app/models/board.rb +++ b/app/models/board.rb @@ -5,10 +5,6 @@ class Board < ActiveRecord::Base validates :project, presence: true - def backlog_list - lists.merge(List.backlog).take - end - def done_list lists.merge(List.done).take end |