94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
11 lines
218 B
Ruby
11 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.define do
|
|
factory :timelog do
|
|
time_spent 3600
|
|
issue
|
|
user { issue.project.creator }
|
|
end
|
|
end
|