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

notification_settings.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c16b0e456ba501af61c49d14bb82d4c3fec9bd04 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :notification_setting do
    source factory: :project
    user
    level 3
  end
end