Welcome to mirror list, hosted at ThFree Co, Russian Federation.

todoable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d93ab4632513b0b5bc3894a46069b499431cefc1 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

# == Todoable concern
#
# Specify object types that supports todos.
#
# Used by Issue, MergeRequest, Design and Epic.
#
module Todoable
end