15 lines
245 B
Ruby
15 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Groups
|
|
module Harbor
|
|
class ArtifactsController < ::Groups::Harbor::ApplicationController
|
|
include ::Harbor::Artifact
|
|
|
|
private
|
|
|
|
def container
|
|
@group
|
|
end
|
|
end
|
|
end
|
|
end
|