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

namespace_onboarding_action.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43dd872673c6d8f87ad8b3f0282a3086c9dcd8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class NamespaceOnboardingAction < ApplicationRecord
  belongs_to :namespace, optional: false

  validates :action, presence: true

  ACTIONS = {
    subscription_created: 1,
    git_write: 2,
    merge_request_created: 3,
    git_read: 4,
    user_added: 6
  }.freeze

  enum action: ACTIONS

  class << self
    def completed?(namespace, action)
      where(namespace: namespace, action: action).exists?
    end

    def create_action(namespace, action)
      NamespaceOnboardingAction.safe_find_or_create_by(namespace: namespace, action: action)
    end
  end
end