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

alert_entity.rb « alert_management « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6871da44887d356868cce4309f9ab6da44b7b83d (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module AlertManagement
  class AlertEntity < Grape::Entity
    expose :iid
    expose :title
  end
end