Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_access_grants.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02c51cd9899ce56429210aca2f143df53af4551f (plain)
1
2
3
4
5
6
7
8
9
10
11
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