94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
13 lines
325 B
Ruby
13 lines
325 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :oauth_access_grant do
|
|
resource_owner_id { create(:user).id }
|
|
application
|
|
token { Doorkeeper::OAuth::Helpers::UniqueToken.generate }
|
|
expires_in { 2.hours }
|
|
|
|
redirect_uri { application.redirect_uri }
|
|
scopes { application.scopes }
|
|
end
|
|
end
|