10 lines
171 B
Ruby
10 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Todoable concern
|
|
#
|
|
# Specify object types that supports todos.
|
|
#
|
|
# Used by Issue, MergeRequest, Design and Epic.
|
|
#
|
|
module Todoable
|
|
end
|