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: 543b3e992742577e12bbd914397e383a53e9e35b (plain)
1
2
3
4
5
6
7
8
9
10
11
FactoryGirl.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