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

error_message.rb « utils « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9c6f8a58472a7b2a305a4ab7255c6098f40bd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module Utils
    module ErrorMessage
      extend self

      def to_user_facing(message)
        "UF: #{message}"
      end
    end
  end
end