summaryrefslogtreecommitdiff
path: root/app/models/clusters/concerns/application_version.rb
blob: e355de23df612d9e376e55a33f9b82c2aed179ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Clusters
  module Concerns
    module ApplicationVersion
      extend ActiveSupport::Concern

      included do
        state_machine :status do
          before_transition any => [:installed, :updated] do |application|
            application.version = application.class.const_get(:VERSION)
          end
        end
      end
    end
  end
end