12 lines
236 B
Ruby
12 lines
236 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class OnboardingProgressService
|
||
|
def initialize(namespace)
|
||
|
@namespace = namespace.root_ancestor
|
||
|
end
|
||
|
|
||
|
def execute(action:)
|
||
|
NamespaceOnboardingAction.create_action(@namespace, action)
|
||
|
end
|
||
|
end
|