mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
15 lines
342 B
Ruby
15 lines
342 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :oauth_access_grant do
|
|
resource_owner_id { create(:user).id }
|
|
application
|
|
organization
|
|
token { Doorkeeper::OAuth::Helpers::UniqueToken.generate }
|
|
expires_in { 2.hours }
|
|
|
|
redirect_uri { application.redirect_uri }
|
|
scopes { application.scopes }
|
|
end
|
|
end
|