summaryrefslogtreecommitdiff
path: root/lib/gitlab/badge/base.rb
blob: 909fa24fa90a0bcce7de70f09bf2fa25d27ec0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Gitlab
  module Badge
    class Base
      def entity
        raise NotImplementedError
      end

      def status
        raise NotImplementedError
      end

      def metadata
        raise NotImplementedError
      end

      def template
        raise NotImplementedError
      end
    end
  end
end