summaryrefslogtreecommitdiff
path: root/spec/factories/project_group_links.rb
blob: b02d167a950157b491177493fae67013fb5c1eea (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :project_group_link do
    project
    group
    expires_at nil
  end
end