5ae9a44aa1
The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
8 lines
130 B
Ruby
8 lines
130 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :project_daily_statistic do
|
|
project
|
|
fetch_count 1
|
|
end
|
|
end
|