summaryrefslogtreecommitdiff
path: root/app/models/analytics/cycle_analytics/project_stage.rb
blob: a312bd24e784ea782cb4c0a70c4d3f329fbba1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Analytics
  module CycleAnalytics
    class ProjectStage < ApplicationRecord
      include Analytics::CycleAnalytics::Stage

      validates :project, presence: true
      belongs_to :project

      alias_attribute :parent, :project
    end
  end
end