06892e88f5
Enables frozen string for the following: * lib/gitlab/ci/*.rb * lib/gitlab/ci/build/**/*.rb * lib/gitlab/ci/config/**/*.rb * lib/gitlab/ci/pipeline/**/*.rb * lib/gitlab/ci/reports/**/*.rb Partially addresses #47424.
15 lines
261 B
Ruby
15 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Model
|
|
def table_name_prefix
|
|
"ci_"
|
|
end
|
|
|
|
def model_name
|
|
@model_name ||= ActiveModel::Name.new(self, nil, self.name.split("::").last)
|
|
end
|
|
end
|
|
end
|
|
end
|